From 7775b575e68f8fd58e2b805f588db43585d5018b Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 20 Jul 2017 15:29:56 -0700 Subject: [PATCH] Differentiate between top-level items and those that appear in statement blocks --- grammar.js | 109 +- src/grammar.json | 309 +- src/parser.c | 120531 +++++++++++++++++++++----------------------- 3 files changed, 58445 insertions(+), 62504 deletions(-) diff --git a/grammar.js b/grammar.js index 29520a1..8d775b6 100644 --- a/grammar.js +++ b/grammar.js @@ -29,20 +29,17 @@ module.exports = grammar({ ], inline: $ => [ - $._statement + $._statement, + $._top_level_item, + $._compound_statement_item ], conflicts: $ => [ - [$._declarator, $._type_specifier, $._expression, $.macro_type_specifier], + [$._type_specifier, $._declarator], + [$._type_specifier, $._declarator, $.macro_type_specifier], + [$._type_specifier, $._expression], [$._type_specifier, $._expression, $.macro_type_specifier], - [$._declarator, $._type_specifier, $.macro_type_specifier], - [$._field_declarator, $._type_specifier, $.macro_type_specifier], - [$._declarator, $._type_specifier, $._expression], - [$._field_declarator, $._type_specifier], - [$._declarator, $._type_specifier], [$._type_specifier, $.macro_type_specifier], - [$._type_specifier, $._expression], - [$._declarator, $._expression], [$.sized_type_specifier], ], @@ -50,17 +47,10 @@ module.exports = grammar({ translation_unit: $ => repeat($._top_level_item), _top_level_item: $ => choice( - $._preproc_statement, $.function_definition, + $.linkage_specification, $.declaration, - $._statement, $._empty_declaration, - $.linkage_specification - ), - - // Preprocesser - - _preproc_statement: $ => choice( $.preproc_if, $.preproc_ifdef, $.preproc_include, @@ -69,26 +59,34 @@ module.exports = grammar({ $.preproc_call ), + _compound_statement_item: $ => choice( + $._statement, + $.declaration, + $._empty_declaration, + rename($.preproc_if_in_compound_statement, 'preproc_if'), + rename($.preproc_ifdef_in_compound_statement, 'preproc_ifdef'), + $.preproc_include, + $.preproc_def, + $.preproc_function_def, + $.preproc_call + ), + + // Preprocesser + preproc_include: $ => seq( - /#[ \t]*include/, - choice( - $.string_literal, - $.system_lib_string - ) + $._pound_include, + choice($.string_literal, $.system_lib_string) ), preproc_def: $ => seq( - /#[ \t]*define/, + $._pound_define, $.identifier, - optional(seq( - /[ \t]+/, - $.preproc_arg - )), + optional(seq(/[ \t]+/, $.preproc_arg)), '\n' ), preproc_function_def: $ => seq( - /#[ \t]*define/, + $._pound_define, $.identifier, $.preproc_params, optional($.preproc_arg), @@ -104,38 +102,61 @@ module.exports = grammar({ $.preproc_arg ), - preproc_arg: $ => token(prec(-1, repeat1(choice(/./, '\\\n')))), - preproc_if: $ => seq( - /#[ \t]*if/, + $._pound_if, $.preproc_arg, repeat($._top_level_item), optional($.preproc_else), - /#[ \t]*endif/ + $._pound_endif + ), + + preproc_if_in_compound_statement: $ => seq( + $._pound_if, + $.preproc_arg, + repeat($._compound_statement_item), + optional(rename($.preproc_else_in_compound_statement, 'preproc_else')), + $._pound_endif ), preproc_ifdef: $ => seq( - choice( - /#[ \t]*ifdef/, - /#[ \t]*ifndef/ - ), + $._pound_ifdef, $.identifier, repeat($._top_level_item), optional($.preproc_else), - /#[ \t]*endif/ + $._pound_endif + ), + + preproc_ifdef_in_compound_statement: $ => seq( + $._pound_ifdef, + $.identifier, + repeat($._compound_statement_item), + optional(rename($.preproc_else_in_compound_statement, 'preproc_else')), + $._pound_endif ), preproc_else: $ => seq( - /#[ \t]*else/, + $._pound_else, repeat($._top_level_item) ), - preproc_directive: $ => /#[ \t]*\a\w*/, + preproc_else_in_compound_statement: $ => seq( + $._pound_else, + repeat($._compound_statement_item) + ), + + _pound_include: $ => preprocessor('include'), + _pound_define: $ => preprocessor('define'), + _pound_if: $ => preprocessor('if'), + _pound_ifdef: $ => preprocessor('ifn?def'), + _pound_endif: $ => preprocessor('endif'), + _pound_else: $ => preprocessor('else'), + preproc_directive: $ => preprocessor('\\a\\w*'), + preproc_arg: $ => token(prec(-1, repeat1(choice(/./, '\\\n')))), // Main Grammar function_definition: $ => seq( - optional($._declaration_specifiers), + $._declaration_specifiers, $._declarator, $.compound_statement ), @@ -244,7 +265,7 @@ module.exports = grammar({ compound_statement: $ => seq( '{', - repeat($._top_level_item), + repeat($._compound_statement_item), '}' ), @@ -329,7 +350,7 @@ module.exports = grammar({ ), field_declaration: $ => seq( - optional($._declaration_specifiers), + $._declaration_specifiers, commaSep($._field_declarator), optional(seq(':', $._expression)), ';' @@ -700,6 +721,10 @@ module.exports = grammar({ module.exports.PREC = PREC +function preprocessor (pattern) { + return new RegExp('#[ \t]*' + pattern) +} + function commaSep (rule) { return optional(commaSep1(rule)) } diff --git a/src/grammar.json b/src/grammar.json index 681e8ba..4a65ae1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -13,11 +13,11 @@ "members": [ { "type": "SYMBOL", - "name": "_preproc_statement" + "name": "function_definition" }, { "type": "SYMBOL", - "name": "function_definition" + "name": "linkage_specification" }, { "type": "SYMBOL", @@ -25,28 +25,64 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "_empty_declaration" }, { "type": "SYMBOL", - "name": "_empty_declaration" + "name": "preproc_if" }, { "type": "SYMBOL", - "name": "linkage_specification" + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" } ] }, - "_preproc_statement": { + "_compound_statement_item": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "preproc_if" + "name": "_statement" }, { "type": "SYMBOL", - "name": "preproc_ifdef" + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "RENAME", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_compound_statement" + }, + "value": "preproc_if" + }, + { + "type": "RENAME", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_compound_statement" + }, + "value": "preproc_ifdef" }, { "type": "SYMBOL", @@ -70,8 +106,8 @@ "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "#[ \\t]*include" + "type": "SYMBOL", + "name": "_pound_include" }, { "type": "CHOICE", @@ -92,8 +128,8 @@ "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "#[ \\t]*define" + "type": "SYMBOL", + "name": "_pound_define" }, { "type": "SYMBOL", @@ -130,8 +166,8 @@ "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "#[ \\t]*define" + "type": "SYMBOL", + "name": "_pound_define" }, { "type": "SYMBOL", @@ -236,35 +272,12 @@ } ] }, - "preproc_arg": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "." - }, - { - "type": "STRING", - "value": "\\\n" - } - ] - } - } - } - }, "preproc_if": { "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "#[ \\t]*if" + "type": "SYMBOL", + "name": "_pound_if" }, { "type": "SYMBOL", @@ -290,27 +303,58 @@ ] }, { - "type": "PATTERN", - "value": "#[ \\t]*endif" + "type": "SYMBOL", + "name": "_pound_endif" } ] }, - "preproc_ifdef": { + "preproc_if_in_compound_statement": { "type": "SEQ", "members": [ + { + "type": "SYMBOL", + "name": "_pound_if" + }, + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_compound_statement_item" + } + }, { "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "#[ \\t]*ifdef" + "type": "RENAME", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_compound_statement" + }, + "value": "preproc_else" }, { - "type": "PATTERN", - "value": "#[ \\t]*ifndef" + "type": "BLANK" } ] }, + { + "type": "SYMBOL", + "name": "_pound_endif" + } + ] + }, + "preproc_ifdef": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pound_ifdef" + }, { "type": "SYMBOL", "name": "identifier" @@ -335,8 +379,48 @@ ] }, { - "type": "PATTERN", - "value": "#[ \\t]*endif" + "type": "SYMBOL", + "name": "_pound_endif" + } + ] + }, + "preproc_ifdef_in_compound_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pound_ifdef" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_compound_statement_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "RENAME", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_compound_statement" + }, + "value": "preproc_else" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_pound_endif" } ] }, @@ -344,8 +428,8 @@ "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "#[ \\t]*else" + "type": "SYMBOL", + "name": "_pound_else" }, { "type": "REPEAT", @@ -356,24 +440,79 @@ } ] }, + "preproc_else_in_compound_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pound_else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_compound_statement_item" + } + } + ] + }, + "_pound_include": { + "type": "PATTERN", + "value": "#[ \t]*include" + }, + "_pound_define": { + "type": "PATTERN", + "value": "#[ \t]*define" + }, + "_pound_if": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "_pound_ifdef": { + "type": "PATTERN", + "value": "#[ \t]*ifn?def" + }, + "_pound_endif": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "_pound_else": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, "preproc_directive": { "type": "PATTERN", - "value": "#[ \\t]*\\a\\w*" + "value": "#[ \t]*\\a\\w*" + }, + "preproc_arg": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "." + }, + { + "type": "STRING", + "value": "\\\n" + } + ] + } + } + } }, "function_definition": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "_declaration_specifiers" }, { "type": "SYMBOL", @@ -972,7 +1111,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_compound_statement_item" } }, { @@ -1312,16 +1451,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "_declaration_specifiers" }, { "type": "CHOICE", @@ -3429,50 +3560,26 @@ ], "conflicts": [ [ - "_declarator", "_type_specifier", - "_expression", - "macro_type_specifier" + "_declarator" ], [ "_type_specifier", - "_expression", - "macro_type_specifier" - ], - [ "_declarator", - "_type_specifier", "macro_type_specifier" ], [ - "_field_declarator", - "_type_specifier", - "macro_type_specifier" - ], - [ - "_declarator", "_type_specifier", "_expression" ], - [ - "_field_declarator", - "_type_specifier" - ], - [ - "_declarator", - "_type_specifier" - ], [ "_type_specifier", + "_expression", "macro_type_specifier" ], [ "_type_specifier", - "_expression" - ], - [ - "_declarator", - "_expression" + "macro_type_specifier" ], [ "sized_type_specifier" @@ -3480,7 +3587,9 @@ ], "externals": [], "inline": [ - "_statement" + "_statement", + "_top_level_item", + "_compound_statement_item" ], "PREC": { "ASSIGNMENT": -1, diff --git a/src/parser.c b/src/parser.c index 3794b00..7e017d2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -4,116 +4,116 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #define LANGUAGE_VERSION 3 -#define STATE_COUNT 1473 -#define SYMBOL_COUNT 186 -#define RENAME_SYMBOL_COUNT 10 -#define TOKEN_COUNT 92 +#define STATE_COUNT 1399 +#define SYMBOL_COUNT 187 +#define RENAME_SYMBOL_COUNT 13 +#define TOKEN_COUNT 91 #define EXTERNAL_TOKEN_COUNT 0 -#define MAX_RENAME_SEQUENCE_LENGTH 3 +#define MAX_RENAME_SEQUENCE_LENGTH 5 enum { - aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH = 1, - aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH = 2, - aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH = 3, - anon_sym_LF = 4, - anon_sym_LPAREN = 5, - anon_sym_DOT_DOT_DOT = 6, - anon_sym_COMMA = 7, - anon_sym_RPAREN = 8, - sym_preproc_arg = 9, - aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH = 10, - aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH = 11, - aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH = 12, - aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH = 13, - aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH = 14, - sym_preproc_directive = 15, - anon_sym_SEMI = 16, - anon_sym_extern = 17, - anon_sym_LBRACE = 18, - anon_sym_RBRACE = 19, - anon_sym_STAR = 20, - anon_sym_LBRACK = 21, - anon_sym_RBRACK = 22, - anon_sym_EQ = 23, - anon_sym_typedef = 24, - anon_sym_static = 25, - anon_sym_auto = 26, - anon_sym_register = 27, - anon_sym_const = 28, - anon_sym_restrict = 29, - anon_sym_volatile = 30, - sym_function_specifier = 31, - anon_sym_unsigned = 32, - anon_sym_long = 33, - anon_sym_short = 34, - anon_sym_enum = 35, - anon_sym_struct = 36, - anon_sym_union = 37, - anon_sym_COLON = 38, - anon_sym_if = 39, - anon_sym_else = 40, - anon_sym_switch = 41, - anon_sym_case = 42, - anon_sym_default = 43, - anon_sym_while = 44, - anon_sym_do = 45, - anon_sym_for = 46, - anon_sym_return = 47, - anon_sym_break = 48, - anon_sym_continue = 49, - anon_sym_goto = 50, - anon_sym_QMARK = 51, - anon_sym_STAR_EQ = 52, - anon_sym_SLASH_EQ = 53, - anon_sym_PERCENT_EQ = 54, - anon_sym_PLUS_EQ = 55, - anon_sym_DASH_EQ = 56, - anon_sym_LT_LT_EQ = 57, - anon_sym_GT_GT_EQ = 58, - anon_sym_AMP_EQ = 59, - anon_sym_CARET_EQ = 60, - anon_sym_PIPE_EQ = 61, - anon_sym_AMP = 62, - anon_sym_PIPE_PIPE = 63, - anon_sym_AMP_AMP = 64, - anon_sym_BANG = 65, - anon_sym_PIPE = 66, - anon_sym_CARET = 67, - anon_sym_TILDE = 68, - anon_sym_EQ_EQ = 69, - anon_sym_BANG_EQ = 70, - anon_sym_LT = 71, - anon_sym_GT = 72, - anon_sym_LT_EQ = 73, - anon_sym_GT_EQ = 74, - anon_sym_LT_LT = 75, - anon_sym_GT_GT = 76, - anon_sym_PLUS = 77, - anon_sym_DASH = 78, - anon_sym_SLASH = 79, - anon_sym_PERCENT = 80, - anon_sym_DASH_DASH = 81, - anon_sym_PLUS_PLUS = 82, - anon_sym_sizeof = 83, - anon_sym_DOT = 84, - anon_sym_DASH_GT = 85, - sym_number_literal = 86, - sym_char_literal = 87, - sym_string_literal = 88, - sym_system_lib_string = 89, - sym_identifier = 90, - sym_comment = 91, - sym_translation_unit = 92, - sym__top_level_item = 93, - sym__preproc_statement = 94, - sym_preproc_include = 95, - sym_preproc_def = 96, - sym_preproc_function_def = 97, - sym_preproc_params = 98, - sym_preproc_call = 99, - sym_preproc_if = 100, - sym_preproc_ifdef = 101, - sym_preproc_else = 102, + aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH = 1, + anon_sym_LF = 2, + anon_sym_LPAREN = 3, + anon_sym_DOT_DOT_DOT = 4, + anon_sym_COMMA = 5, + anon_sym_RPAREN = 6, + sym__pound_include = 7, + sym__pound_define = 8, + sym__pound_if = 9, + sym__pound_ifdef = 10, + sym__pound_endif = 11, + sym__pound_else = 12, + sym_preproc_directive = 13, + sym_preproc_arg = 14, + anon_sym_SEMI = 15, + anon_sym_extern = 16, + anon_sym_LBRACE = 17, + anon_sym_RBRACE = 18, + anon_sym_STAR = 19, + anon_sym_LBRACK = 20, + anon_sym_RBRACK = 21, + anon_sym_EQ = 22, + anon_sym_typedef = 23, + anon_sym_static = 24, + anon_sym_auto = 25, + anon_sym_register = 26, + anon_sym_const = 27, + anon_sym_restrict = 28, + anon_sym_volatile = 29, + sym_function_specifier = 30, + anon_sym_unsigned = 31, + anon_sym_long = 32, + anon_sym_short = 33, + anon_sym_enum = 34, + anon_sym_struct = 35, + anon_sym_union = 36, + anon_sym_COLON = 37, + anon_sym_if = 38, + anon_sym_else = 39, + anon_sym_switch = 40, + anon_sym_case = 41, + anon_sym_default = 42, + anon_sym_while = 43, + anon_sym_do = 44, + anon_sym_for = 45, + anon_sym_return = 46, + anon_sym_break = 47, + anon_sym_continue = 48, + anon_sym_goto = 49, + anon_sym_QMARK = 50, + anon_sym_STAR_EQ = 51, + anon_sym_SLASH_EQ = 52, + anon_sym_PERCENT_EQ = 53, + anon_sym_PLUS_EQ = 54, + anon_sym_DASH_EQ = 55, + anon_sym_LT_LT_EQ = 56, + anon_sym_GT_GT_EQ = 57, + anon_sym_AMP_EQ = 58, + anon_sym_CARET_EQ = 59, + anon_sym_PIPE_EQ = 60, + anon_sym_AMP = 61, + anon_sym_PIPE_PIPE = 62, + anon_sym_AMP_AMP = 63, + anon_sym_BANG = 64, + anon_sym_PIPE = 65, + anon_sym_CARET = 66, + anon_sym_TILDE = 67, + anon_sym_EQ_EQ = 68, + anon_sym_BANG_EQ = 69, + anon_sym_LT = 70, + anon_sym_GT = 71, + anon_sym_LT_EQ = 72, + anon_sym_GT_EQ = 73, + anon_sym_LT_LT = 74, + anon_sym_GT_GT = 75, + anon_sym_PLUS = 76, + anon_sym_DASH = 77, + anon_sym_SLASH = 78, + anon_sym_PERCENT = 79, + anon_sym_DASH_DASH = 80, + anon_sym_PLUS_PLUS = 81, + anon_sym_sizeof = 82, + anon_sym_DOT = 83, + anon_sym_DASH_GT = 84, + sym_number_literal = 85, + sym_char_literal = 86, + sym_string_literal = 87, + sym_system_lib_string = 88, + sym_identifier = 89, + sym_comment = 90, + sym_translation_unit = 91, + sym_preproc_include = 92, + sym_preproc_def = 93, + sym_preproc_function_def = 94, + sym_preproc_params = 95, + sym_preproc_call = 96, + sym_preproc_if = 97, + sym_preproc_if_in_compound_statement = 98, + sym_preproc_ifdef = 99, + sym_preproc_ifdef_in_compound_statement = 100, + sym_preproc_else = 101, + sym_preproc_else_in_compound_statement = 102, sym_function_definition = 103, sym_declaration = 104, sym__declaration_specifiers = 105, @@ -186,46 +186,49 @@ enum { sym_macro_type_specifier = 172, aux_sym_translation_unit_repeat1 = 173, aux_sym_preproc_params_repeat1 = 174, - aux_sym_declaration_repeat1 = 175, - aux_sym__declaration_specifiers_repeat1 = 176, - aux_sym_sized_type_specifier_repeat1 = 177, - aux_sym_enumerator_list_repeat1 = 178, - aux_sym_field_declaration_list_repeat1 = 179, - aux_sym_field_declaration_repeat1 = 180, - aux_sym_parameter_list_repeat1 = 181, - aux_sym_for_statement_repeat1 = 182, - aux_sym_type_descriptor_repeat1 = 183, - aux_sym__initializer_list_contents_repeat1 = 184, - aux_sym_concatenated_string_repeat1 = 185, - rename_sym_array_declarator = 186, - rename_sym_enum_name = 187, - rename_sym_field_name = 188, - rename_sym_function_declarator = 189, - rename_sym_label_name = 190, - rename_sym_pointer_declarator = 191, - rename_sym_struct_name = 192, - rename_sym_type_name = 193, - rename_sym_union_name = 194, - rename_sym_variable_name = 195, + aux_sym_preproc_if_in_compound_statement_repeat1 = 175, + aux_sym_declaration_repeat1 = 176, + aux_sym__declaration_specifiers_repeat1 = 177, + aux_sym_sized_type_specifier_repeat1 = 178, + aux_sym_enumerator_list_repeat1 = 179, + aux_sym_field_declaration_list_repeat1 = 180, + aux_sym_field_declaration_repeat1 = 181, + aux_sym_parameter_list_repeat1 = 182, + aux_sym_for_statement_repeat1 = 183, + aux_sym_type_descriptor_repeat1 = 184, + aux_sym__initializer_list_contents_repeat1 = 185, + aux_sym_concatenated_string_repeat1 = 186, + rename_sym_array_declarator = 187, + rename_sym_enum_name = 188, + rename_sym_field_name = 189, + rename_sym_function_declarator = 190, + rename_sym_label_name = 191, + rename_sym_pointer_declarator = 192, + rename_sym_preproc_else = 193, + rename_sym_preproc_if = 194, + rename_sym_preproc_ifdef = 195, + rename_sym_struct_name = 196, + rename_sym_type_name = 197, + rename_sym_union_name = 198, + rename_sym_variable_name = 199, }; static const char *ts_symbol_names[] = { [ts_builtin_sym_end] = "END", - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = "/#[ \\t]*include/", - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = "/#[ \\t]*define/", [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = "/[ \\t]+/", [anon_sym_LF] = "\n", [anon_sym_LPAREN] = "(", [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_COMMA] = ",", [anon_sym_RPAREN] = ")", - [sym_preproc_arg] = "preproc_arg", - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = "/#[ \\t]*if/", - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = "/#[ \\t]*endif/", - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = "/#[ \\t]*ifdef/", - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = "/#[ \\t]*ifndef/", - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = "/#[ \\t]*else/", + [sym__pound_include] = "_pound_include", + [sym__pound_define] = "_pound_define", + [sym__pound_if] = "_pound_if", + [sym__pound_ifdef] = "_pound_ifdef", + [sym__pound_endif] = "_pound_endif", + [sym__pound_else] = "_pound_else", [sym_preproc_directive] = "preproc_directive", + [sym_preproc_arg] = "preproc_arg", [anon_sym_SEMI] = ";", [anon_sym_extern] = "extern", [anon_sym_LBRACE] = "{", @@ -303,16 +306,17 @@ static const char *ts_symbol_names[] = { [sym_identifier] = "identifier", [sym_comment] = "comment", [sym_translation_unit] = "translation_unit", - [sym__top_level_item] = "_top_level_item", - [sym__preproc_statement] = "_preproc_statement", [sym_preproc_include] = "preproc_include", [sym_preproc_def] = "preproc_def", [sym_preproc_function_def] = "preproc_function_def", [sym_preproc_params] = "preproc_params", [sym_preproc_call] = "preproc_call", [sym_preproc_if] = "preproc_if", + [sym_preproc_if_in_compound_statement] = "preproc_if_in_compound_statement", [sym_preproc_ifdef] = "preproc_ifdef", + [sym_preproc_ifdef_in_compound_statement] = "preproc_ifdef_in_compound_statement", [sym_preproc_else] = "preproc_else", + [sym_preproc_else_in_compound_statement] = "preproc_else_in_compound_statement", [sym_function_definition] = "function_definition", [sym_declaration] = "declaration", [sym__declaration_specifiers] = "_declaration_specifiers", @@ -385,6 +389,7 @@ static const char *ts_symbol_names[] = { [sym_macro_type_specifier] = "macro_type_specifier", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", [aux_sym_preproc_params_repeat1] = "preproc_params_repeat1", + [aux_sym_preproc_if_in_compound_statement_repeat1] = "preproc_if_in_compound_statement_repeat1", [aux_sym_declaration_repeat1] = "declaration_repeat1", [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", @@ -402,6 +407,9 @@ static const char *ts_symbol_names[] = { [rename_sym_function_declarator] = "function_declarator", [rename_sym_label_name] = "label_name", [rename_sym_pointer_declarator] = "pointer_declarator", + [rename_sym_preproc_else] = "preproc_else", + [rename_sym_preproc_if] = "preproc_if", + [rename_sym_preproc_ifdef] = "preproc_ifdef", [rename_sym_struct_name] = "struct_name", [rename_sym_type_name] = "type_name", [rename_sym_union_name] = "union_name", @@ -415,18 +423,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .structural = true, .extra = false, }, - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = { - .visible = false, - .named = false, - .structural = true, - .extra = false, - }, - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = { - .visible = false, - .named = false, - .structural = true, - .extra = false, - }, [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = { .visible = false, .named = false, @@ -463,39 +459,39 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .structural = true, .extra = false, }, - [sym_preproc_arg] = { - .visible = true, + [sym__pound_include] = { + .visible = false, .named = true, .structural = true, .extra = false, }, - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = { + [sym__pound_define] = { .visible = false, - .named = false, + .named = true, .structural = true, .extra = false, }, - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = { + [sym__pound_if] = { .visible = false, - .named = false, + .named = true, .structural = true, .extra = false, }, - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = { + [sym__pound_ifdef] = { .visible = false, - .named = false, + .named = true, .structural = true, .extra = false, }, - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = { + [sym__pound_endif] = { .visible = false, - .named = false, + .named = true, .structural = true, .extra = false, }, - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = { + [sym__pound_else] = { .visible = false, - .named = false, + .named = true, .structural = true, .extra = false, }, @@ -505,6 +501,12 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .structural = true, .extra = false, }, + [sym_preproc_arg] = { + .visible = true, + .named = true, + .structural = true, + .extra = false, + }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -967,55 +969,55 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .structural = true, .extra = false, }, - [sym__top_level_item] = { - .visible = false, + [sym_preproc_include] = { + .visible = true, .named = true, .structural = true, .extra = false, }, - [sym__preproc_statement] = { - .visible = false, + [sym_preproc_def] = { + .visible = true, .named = true, .structural = true, .extra = false, }, - [sym_preproc_include] = { + [sym_preproc_function_def] = { .visible = true, .named = true, .structural = true, .extra = false, }, - [sym_preproc_def] = { + [sym_preproc_params] = { .visible = true, .named = true, .structural = true, .extra = false, }, - [sym_preproc_function_def] = { + [sym_preproc_call] = { .visible = true, .named = true, .structural = true, .extra = false, }, - [sym_preproc_params] = { + [sym_preproc_if] = { .visible = true, .named = true, .structural = true, .extra = false, }, - [sym_preproc_call] = { + [sym_preproc_if_in_compound_statement] = { .visible = true, .named = true, .structural = true, .extra = false, }, - [sym_preproc_if] = { + [sym_preproc_ifdef] = { .visible = true, .named = true, .structural = true, .extra = false, }, - [sym_preproc_ifdef] = { + [sym_preproc_ifdef_in_compound_statement] = { .visible = true, .named = true, .structural = true, @@ -1027,6 +1029,12 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .structural = true, .extra = false, }, + [sym_preproc_else_in_compound_statement] = { + .visible = true, + .named = true, + .structural = true, + .extra = false, + }, [sym_function_definition] = { .visible = true, .named = true, @@ -1459,6 +1467,12 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .structural = true, .extra = false, }, + [aux_sym_preproc_if_in_compound_statement_repeat1] = { + .visible = false, + .named = false, + .structural = true, + .extra = false, + }, [aux_sym_declaration_repeat1] = { .visible = false, .named = false, @@ -1561,6 +1575,24 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .structural = true, .extra = true, }, + [rename_sym_preproc_else] = { + .visible = true, + .named = true, + .structural = true, + .extra = true, + }, + [rename_sym_preproc_if] = { + .visible = true, + .named = true, + .structural = true, + .extra = true, + }, + [rename_sym_preproc_ifdef] = { + .visible = true, + .named = true, + .structural = true, + .extra = true, + }, [rename_sym_struct_name] = { .visible = true, .named = true, @@ -1587,21 +1619,21 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -static TSSymbol ts_rename_sequences[15][MAX_RENAME_SEQUENCE_LENGTH] = { +static TSSymbol ts_rename_sequences[21][MAX_RENAME_SEQUENCE_LENGTH] = { [1] = { - [0] = rename_sym_variable_name, + [0] = rename_sym_type_name, }, [2] = { - [0] = rename_sym_type_name, + [1] = rename_sym_enum_name, }, [3] = { - [1] = rename_sym_enum_name, + [1] = rename_sym_struct_name, }, [4] = { - [1] = rename_sym_struct_name, + [1] = rename_sym_union_name, }, [5] = { - [1] = rename_sym_union_name, + [0] = rename_sym_variable_name, }, [6] = { [1] = rename_sym_type_name, @@ -1619,17 +1651,35 @@ static TSSymbol ts_rename_sequences[15][MAX_RENAME_SEQUENCE_LENGTH] = { [0] = rename_sym_array_declarator, }, [11] = { - [1] = rename_sym_label_name, + [0] = rename_sym_preproc_if, }, [12] = { - [0] = rename_sym_label_name, + [0] = rename_sym_preproc_ifdef, }, [13] = { - [2] = rename_sym_field_name, + [1] = rename_sym_preproc_if, }, [14] = { + [1] = rename_sym_preproc_ifdef, + }, + [15] = { + [1] = rename_sym_label_name, + }, + [16] = { + [0] = rename_sym_label_name, + }, + [17] = { + [2] = rename_sym_field_name, + }, + [18] = { [1] = rename_sym_field_name, }, + [19] = { + [2] = rename_sym_preproc_else, + }, + [20] = { + [3] = rename_sym_preproc_else, + }, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1645,96 +1695,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(7); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(40); + ADVANCE(37); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(51); + ADVANCE(48); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(58); + ADVANCE(55); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(121); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -1829,7 +1879,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 13: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH); + ACCEPT_TOKEN(sym__pound_define); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1877,7 +1927,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 18: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH); + ACCEPT_TOKEN(sym__pound_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1915,7 +1965,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 22: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH); + ACCEPT_TOKEN(sym__pound_endif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1927,7 +1977,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(24); if (lookahead == 'n') - ADVANCE(32); + ADVANCE(29); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1935,7 +1985,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 24: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH); + ACCEPT_TOKEN(sym__pound_if); if (lookahead == 'd') ADVANCE(25); if (lookahead == 'n') @@ -1967,7 +2017,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 27: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH); + ACCEPT_TOKEN(sym__pound_ifdef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1977,7 +2027,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 28: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'd') - ADVANCE(29); + ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1986,7 +2036,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 29: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') + if (lookahead == 'c') ADVANCE(30); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -1996,7 +2046,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 30: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') + if (lookahead == 'l') ADVANCE(31); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2005,7 +2055,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 31: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') + ADVANCE(32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2014,7 +2066,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 32: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') + if (lookahead == 'd') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2024,7 +2076,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 33: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') + if (lookahead == 'e') ADVANCE(34); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2033,9 +2085,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 34: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') - ADVANCE(35); + ACCEPT_TOKEN(sym__pound_include); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2043,982 +2093,982 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(14); END_STATE(); case 35: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') - ADVANCE(36); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(14); - END_STATE(); - case 36: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') - ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(14); - END_STATE(); - case 37: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(14); - END_STATE(); - case 38: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') - ADVANCE(39); + ADVANCE(36); END_STATE(); - case 39: + case 36: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 40: + case 37: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '=') - ADVANCE(41); + ADVANCE(38); END_STATE(); - case 41: + case 38: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 42: + case 39: if (lookahead == '\\') - ADVANCE(43); + ADVANCE(40); if (lookahead != 0 && lookahead != '\'') - ADVANCE(46); + ADVANCE(43); END_STATE(); - case 43: + case 40: if (lookahead == '\'') - ADVANCE(44); + ADVANCE(41); if (lookahead != 0) - ADVANCE(46); + ADVANCE(43); END_STATE(); - case 44: + case 41: ACCEPT_TOKEN(sym_char_literal); if (lookahead == '\'') - ADVANCE(45); + ADVANCE(42); END_STATE(); - case 45: + case 42: ACCEPT_TOKEN(sym_char_literal); END_STATE(); - case 46: + case 43: if (lookahead == '\'') - ADVANCE(45); + ADVANCE(42); END_STATE(); - case 47: + case 44: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 48: + case 45: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 49: + case 46: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') - ADVANCE(50); + ADVANCE(47); END_STATE(); - case 50: + case 47: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 51: + case 48: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '=') - ADVANCE(52); + ADVANCE(49); END_STATE(); - case 52: + case 49: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 53: + case 50: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 54: + case 51: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') - ADVANCE(55); + ADVANCE(52); if (lookahead == '=') - ADVANCE(56); + ADVANCE(53); if (lookahead == '>') - ADVANCE(57); + ADVANCE(54); END_STATE(); - case 55: + case 52: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 56: + case 53: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 57: + case 54: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 58: + case 55: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') - ADVANCE(59); + ADVANCE(56); END_STATE(); - case 59: + case 56: if (lookahead == '.') - ADVANCE(60); + ADVANCE(57); END_STATE(); - case 60: + case 57: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 61: + case 58: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') - ADVANCE(62); + ADVANCE(59); if (lookahead == '/') - ADVANCE(65); + ADVANCE(62); if (lookahead == '=') - ADVANCE(66); + ADVANCE(63); END_STATE(); - case 62: + case 59: if (lookahead == '*') - ADVANCE(63); + ADVANCE(60); if (lookahead != 0) - ADVANCE(62); + ADVANCE(59); END_STATE(); - case 63: + case 60: if (lookahead == '/') - ADVANCE(64); + ADVANCE(61); if (lookahead != 0) - ADVANCE(62); + ADVANCE(59); END_STATE(); - case 64: + case 61: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 65: + case 62: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(65); + ADVANCE(62); END_STATE(); - case 66: + case 63: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 67: + case 64: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(68); + ADVANCE(65); if (lookahead == 'L') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'U') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'b') - ADVANCE(71); + ADVANCE(68); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'u') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'x') - ADVANCE(73); + ADVANCE(70); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); END_STATE(); - case 68: + case 65: if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(69); + ADVANCE(66); END_STATE(); - case 69: + case 66: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'U') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'u') - ADVANCE(70); + ADVANCE(67); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(69); + ADVANCE(66); END_STATE(); - case 70: + case 67: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'U') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'u') - ADVANCE(70); + ADVANCE(67); END_STATE(); - case 71: + case 68: if (lookahead == '0' || lookahead == '1') - ADVANCE(72); + ADVANCE(69); END_STATE(); - case 72: + case 69: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'U') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'u') - ADVANCE(70); + ADVANCE(67); if (lookahead == '0' || lookahead == '1') - ADVANCE(72); + ADVANCE(69); END_STATE(); - case 73: + case 70: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'f')) - ADVANCE(74); + ADVANCE(71); END_STATE(); - case 74: + case 71: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(74); + ADVANCE(71); if (lookahead == 'U') - ADVANCE(74); + ADVANCE(71); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'u') - ADVANCE(70); + ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'f')) - ADVANCE(74); + ADVANCE(71); END_STATE(); - case 75: + case 72: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(68); + ADVANCE(65); if (lookahead == 'L') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'U') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(67); if (lookahead == 'u') - ADVANCE(70); + ADVANCE(67); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); END_STATE(); - case 76: + case 73: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 77: + case 74: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 78: + case 75: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') - ADVANCE(79); + ADVANCE(76); if (lookahead == '=') - ADVANCE(81); + ADVANCE(78); END_STATE(); - case 79: + case 76: ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') - ADVANCE(80); + ADVANCE(77); END_STATE(); - case 80: + case 77: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 81: + case 78: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 82: + case 79: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') - ADVANCE(83); + ADVANCE(80); END_STATE(); - case 83: + case 80: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 84: + case 81: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') - ADVANCE(85); + ADVANCE(82); if (lookahead == '>') - ADVANCE(86); + ADVANCE(83); END_STATE(); - case 85: + case 82: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 86: + case 83: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '=') - ADVANCE(87); + ADVANCE(84); END_STATE(); - case 87: + case 84: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 88: + case 85: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 89: + case 86: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 90: + case 87: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 91: + case 88: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') - ADVANCE(92); + ADVANCE(89); END_STATE(); - case 92: + case 89: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 93: + case 90: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(94); + ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 94: + case 91: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(95); + ADVANCE(92); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 95: + case 92: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(96); + ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 96: + case 93: ACCEPT_TOKEN(anon_sym_auto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 97: + case 94: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 98: + case 95: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(99); + ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 99: + case 96: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(100); + ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 100: + case 97: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(101); + ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 101: + case 98: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'k') - ADVANCE(102); + ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 102: + case 99: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 103: + case 100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(104); + ADVANCE(101); if (lookahead == 'o') - ADVANCE(107); + ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 104: + case 101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(105); + ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 105: + case 102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(106); + ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 106: + case 103: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 107: + case 104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(108); + ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 108: + case 105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(109); + ADVANCE(106); if (lookahead == 't') - ADVANCE(111); + ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 109: + case 106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(110); + ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 110: + case 107: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 111: + case 108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(112); + ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 112: + case 109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(113); + ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 113: + case 110: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(114); + ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 114: + case 111: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(115); + ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 115: + case 112: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 116: + case 113: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(117); + ADVANCE(114); if (lookahead == 'o') - ADVANCE(123); + ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 117: + case 114: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'f') - ADVANCE(118); + ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 118: + case 115: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(119); + ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 119: + case 116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(120); + ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 120: + case 117: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(121); + ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 121: + case 118: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(122); + ADVANCE(119); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 122: + case 119: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 123: + case 120: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 124: + case 121: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(125); + ADVANCE(122); if (lookahead == 'n') - ADVANCE(128); + ADVANCE(125); if (lookahead == 'x') - ADVANCE(131); + ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 125: + case 122: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(126); + ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 126: + case 123: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(127); + ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 127: + case 124: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 128: + case 125: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(129); + ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 129: + case 126: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'm') - ADVANCE(130); + ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 130: + case 127: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 131: + case 128: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(132); + ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 132: + case 129: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(133); + ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 133: + case 130: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(134); + ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 134: + case 131: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(135); + ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 135: + case 132: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 136: + case 133: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(137); + ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 137: + case 134: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(138); + ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 138: + case 135: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 139: + case 136: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(140); + ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 140: + case 137: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(141); + ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 141: + case 138: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(142); + ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 142: + case 139: ACCEPT_TOKEN(anon_sym_goto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 143: + case 140: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'f') - ADVANCE(144); + ADVANCE(141); if (lookahead == 'n') - ADVANCE(145); + ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 144: + case 141: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 145: + case 142: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(146); + ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 146: + case 143: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(147); + ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 147: + case 144: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') + ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym_function_specifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 147: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 148: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') + if (lookahead == 'n') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 149: - ACCEPT_TOKEN(sym_function_specifier); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') + ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 150: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') - ADVANCE(151); + ACCEPT_TOKEN(anon_sym_long); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 151: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') + if (lookahead == 'e') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 152: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'g') ADVANCE(153); + if (lookahead == 's') + ADVANCE(159); + if (lookahead == 't') + ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_long); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') + if (lookahead == 's') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') - ADVANCE(156); - if (lookahead == 's') - ADVANCE(162); if (lookahead == 't') - ADVANCE(168); + ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') + if (lookahead == 'e') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') + if (lookahead == 'r') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(159); + ACCEPT_TOKEN(anon_sym_register); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') + if (lookahead == 't') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); @@ -3028,245 +3078,245 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') + if (lookahead == 'c') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') + if (lookahead == 't') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 164: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(165); + ACCEPT_TOKEN(anon_sym_restrict); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') + if (lookahead == 'u') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') + if (lookahead == 'r') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_restrict); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 168: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') - ADVANCE(169); + ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 169: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') + if (lookahead == 'h') ADVANCE(170); + if (lookahead == 'i') + ADVANCE(174); + if (lookahead == 't') + ADVANCE(179); + if (lookahead == 'w') + ADVANCE(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 170: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') + if (lookahead == 'o') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') + ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 172: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(173); - if (lookahead == 'i') - ADVANCE(177); if (lookahead == 't') - ADVANCE(182); - if (lookahead == 'w') - ADVANCE(191); + ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 173: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') - ADVANCE(174); + ACCEPT_TOKEN(anon_sym_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 174: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') + if (lookahead == 'z') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'y')) + ADVANCE(94); END_STATE(); case 175: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') + if (lookahead == 'e') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_short); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') + ADVANCE(177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 177: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') + if (lookahead == 'f') ADVANCE(178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 178: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(179); + ACCEPT_TOKEN(anon_sym_sizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 179: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') + if (lookahead == 'a') ADVANCE(180); + if (lookahead == 'r') + ADVANCE(184); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') + if (lookahead == 't') ADVANCE(181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_sizeof); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') + if (lookahead == 'c') ADVANCE(183); - if (lookahead == 'r') - ADVANCE(187); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 183: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(184); + ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') + if (lookahead == 'u') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 185: ACCEPT_TOKEN(sym_identifier); @@ -3276,35 +3326,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') + ADVANCE(187); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 187: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') - ADVANCE(188); + ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 188: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') + if (lookahead == 'i') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 189: ACCEPT_TOKEN(sym_identifier); @@ -3314,131 +3364,135 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') + ADVANCE(191); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 191: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') + if (lookahead == 'h') ADVANCE(192); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 192: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(193); + ACCEPT_TOKEN(anon_sym_switch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 193: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') + if (lookahead == 'y') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 194: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') + if (lookahead == 'p') ADVANCE(195); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 196: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') + if (lookahead == 'd') ADVANCE(197); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 197: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') + if (lookahead == 'e') ADVANCE(198); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 198: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') + if (lookahead == 'f') ADVANCE(199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 199: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') - ADVANCE(200); + ACCEPT_TOKEN(anon_sym_typedef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 200: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') + if (lookahead == 'n') ADVANCE(201); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 201: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') + if (lookahead == 'i') ADVANCE(202); + if (lookahead == 's') + ADVANCE(205); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_typedef); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') + ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 203: ACCEPT_TOKEN(sym_identifier); @@ -3448,3774 +3502,3689 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 204: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(205); - if (lookahead == 's') - ADVANCE(208); + ACCEPT_TOKEN(anon_sym_union); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 205: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') + if (lookahead == 'i') ADVANCE(206); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 206: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') + if (lookahead == 'g') ADVANCE(207); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_union); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 208: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') + if (lookahead == 'e') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 209: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') + if (lookahead == 'd') ADVANCE(210); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 210: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(211); + ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 211: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') + if (lookahead == 'o') ADVANCE(212); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 212: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') + if (lookahead == 'l') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 214: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') + if (lookahead == 't') ADVANCE(215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 215: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') + if (lookahead == 'i') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 216: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') + if (lookahead == 'l') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 217: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') + if (lookahead == 'e') ADVANCE(218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 218: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(219); + ACCEPT_TOKEN(anon_sym_volatile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 219: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') + if (lookahead == 'h') ADVANCE(220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 220: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') + if (lookahead == 'i') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_volatile); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 222: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 223: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 224: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(225); + ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 225: + case 222: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(226); + ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 226: + case 223: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 227: + case 224: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 228: + case 225: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '=') - ADVANCE(229); + ADVANCE(226); if (lookahead == '|') - ADVANCE(230); + ADVANCE(227); END_STATE(); - case 229: + case 226: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 230: + case 227: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 231: + case 228: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 232: + case 229: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 233: + case 230: if (lookahead == 0) ADVANCE(1); - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); if (lookahead == '#') - ADVANCE(235); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); + ADVANCE(231); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(238); if (lookahead == 's') - ADVANCE(172); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(230); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_BANG); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 235: + case 231: if (lookahead == 'd') ADVANCE(8); if (lookahead == 'i') ADVANCE(23); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(235); + ADVANCE(231); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(14); END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') - ADVANCE(239); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 240: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') - ADVANCE(55); - END_STATE(); - case 241: - if (lookahead == '*') - ADVANCE(62); - if (lookahead == '/') - ADVANCE(65); - END_STATE(); - case 242: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(128); - if (lookahead == 'x') - ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 243: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '<') - ADVANCE(244); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(243); - END_STATE(); - case 244: - if (lookahead == '>') - ADVANCE(245); - if (lookahead == '\\') - ADVANCE(246); - if (lookahead != 0) - ADVANCE(244); - END_STATE(); - case 245: - ACCEPT_TOKEN(sym_system_lib_string); - END_STATE(); - case 246: - if (lookahead == '>') - ADVANCE(247); - if (lookahead == '\\') - ADVANCE(246); - if (lookahead != 0) - ADVANCE(244); - END_STATE(); - case 247: - ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') - ADVANCE(245); - if (lookahead == '\\') - ADVANCE(246); - if (lookahead != 0) - ADVANCE(244); - END_STATE(); - case 248: - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(248); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 249: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); + case 232: if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); + ADVANCE(59); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == 'c') - ADVANCE(250); - if (lookahead == 'e') - ADVANCE(253); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(254); - if (lookahead == 's') - ADVANCE(256); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '~') - ADVANCE(232); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(249); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(62); END_STATE(); - case 250: + case 233: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(251); + ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 251: + case 234: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(252); + ADVANCE(235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 252: + case 235: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(109); + ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 253: + case 236: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') + ADVANCE(125); + if (lookahead == 'x') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 254: + case 237: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(255); + if (lookahead == 'n') + ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 255: + case 238: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') - ADVANCE(162); + if (lookahead == 'e') + ADVANCE(239); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 256: + case 239: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(173); - if (lookahead == 'i') - ADVANCE(177); - if (lookahead == 't') - ADVANCE(257); + if (lookahead == 'g') + ADVANCE(153); + if (lookahead == 's') + ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 257: + case 240: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') - ADVANCE(187); + if (lookahead == 'h') + ADVANCE(170); + if (lookahead == 't') + ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 258: - if (lookahead == '\n') - SKIP(258); + case 241: + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '/') - ADVANCE(259); - if (lookahead == '\\') - ADVANCE(264); + ADVANCE(232); + if (lookahead == '<') + ADVANCE(242); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(266); - if (lookahead != 0) - ADVANCE(265); + SKIP(241); END_STATE(); - case 259: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') - ADVANCE(260); - if (lookahead == '/') - ADVANCE(263); + case 242: + if (lookahead == '>') + ADVANCE(243); if (lookahead == '\\') - ADVANCE(264); - if (lookahead != 0 && - lookahead != '\n') - ADVANCE(265); + ADVANCE(244); + if (lookahead != 0) + ADVANCE(242); END_STATE(); - case 260: + case 243: + ACCEPT_TOKEN(sym_system_lib_string); + END_STATE(); + case 244: + if (lookahead == '>') + ADVANCE(245); + if (lookahead == '\\') + ADVANCE(244); + if (lookahead != 0) + ADVANCE(242); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') + ADVANCE(243); + if (lookahead == '\\') + ADVANCE(244); + if (lookahead != 0) + ADVANCE(242); + END_STATE(); + case 246: + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(246); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 247: + if (lookahead == '\n') + SKIP(247); + if (lookahead == '/') + ADVANCE(248); + if (lookahead == '\\') + ADVANCE(253); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(255); + if (lookahead != 0) + ADVANCE(254); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') + ADVANCE(249); + if (lookahead == '/') + ADVANCE(252); + if (lookahead == '\\') + ADVANCE(253); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(254); + END_STATE(); + case 249: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(62); + ADVANCE(59); if (lookahead == '*') - ADVANCE(261); + ADVANCE(250); if (lookahead == '\\') - ADVANCE(262); + ADVANCE(251); if (lookahead != 0) - ADVANCE(260); + ADVANCE(249); END_STATE(); - case 261: + case 250: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(62); + ADVANCE(59); if (lookahead == '/') - ADVANCE(64); + ADVANCE(61); if (lookahead == '\\') - ADVANCE(262); + ADVANCE(251); if (lookahead != 0) - ADVANCE(260); + ADVANCE(249); END_STATE(); - case 262: + case 251: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(260); + ADVANCE(249); if (lookahead == '*') - ADVANCE(261); + ADVANCE(250); if (lookahead == '\\') - ADVANCE(262); + ADVANCE(251); if (lookahead != 0) - ADVANCE(260); + ADVANCE(249); END_STATE(); - case 263: + case 252: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') - ADVANCE(263); + ADVANCE(252); if (lookahead != 0 && lookahead != '\n') - ADVANCE(263); + ADVANCE(252); END_STATE(); - case 264: + case 253: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(265); + ADVANCE(254); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead != 0) - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 265: + case 254: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead != 0 && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 266: + case 255: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') - ADVANCE(259); + ADVANCE(248); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(266); + ADVANCE(255); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 267: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '!') - ADVANCE(234); + case 256: if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(124); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(238); if (lookahead == 's') - ADVANCE(172); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(256); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 268: + case 257: + if (lookahead == '!') + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == ',') + ADVANCE(50); + if (lookahead == '-') + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(272); + ADVANCE(264); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(268); + SKIP(257); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 269: + case 258: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(262); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') + ADVANCE(52); + END_STATE(); + case 264: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(145); + if (lookahead == 'h') + ADVANCE(170); + if (lookahead == 'i') + ADVANCE(174); + if (lookahead == 't') + ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 270: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 271: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') - ADVANCE(156); - if (lookahead == 's') - ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(173); - if (lookahead == 't') - ADVANCE(182); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 273: + case 265: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') - ADVANCE(235); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); + if (lookahead == ':') + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(238); if (lookahead == 's') - ADVANCE(172); + ADVANCE(267); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(269); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); + ADVANCE(211); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(273); + SKIP(265); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 274: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == 's') - ADVANCE(275); - if (lookahead == '~') - ADVANCE(232); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(274); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || + case 266: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'x') + ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 275: + case 267: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') + ADVANCE(170); if (lookahead == 'i') - ADVANCE(177); + ADVANCE(174); + if (lookahead == 't') + ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 276: + case 268: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(180); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') + ADVANCE(205); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 271: + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '{') + ADVANCE(224); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(271); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 272: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); - if (lookahead == 'l') - ADVANCE(150); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(277); + ADVANCE(273); if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(276); + SKIP(272); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 277: + case 273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(173); if (lookahead == 'i') - ADVANCE(177); + ADVANCE(174); if (lookahead == 't') - ADVANCE(182); + ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 278: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(240); + case 274: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') - ADVANCE(90); + ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(274); + END_STATE(); + case 275: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(232); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(280); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(282); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(211); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(278); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(275); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 279: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') - ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 280: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(173); - if (lookahead == 'i') - ADVANCE(177); - if (lookahead == 't') - ADVANCE(281); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 281: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') - ADVANCE(183); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 282: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(283); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 283: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') - ADVANCE(208); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 284: + case 276: + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(260); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '{') - ADVANCE(227); + ADVANCE(232); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(284); + SKIP(276); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 285: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(285); + ADVANCE(94); END_STATE(); - case 286: + case 277: if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(232); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(236); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'l') + ADVANCE(147); + if (lookahead == 'r') + ADVANCE(238); + if (lookahead == 's') + ADVANCE(240); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(286); + SKIP(277); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 287: + case 278: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); + if (lookahead == '#') + ADVANCE(7); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); + if (lookahead == 'a') + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(288); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); + if (lookahead == 'e') + ADVANCE(236); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(291); + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(292); + ADVANCE(151); if (lookahead == 's') - ADVANCE(294); + ADVANCE(169); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(287); + SKIP(278); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 288: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') - ADVANCE(104); - if (lookahead == 'o') - ADVANCE(289); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 289: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + case 279: + if (lookahead == '\n') + ADVANCE(280); + if (lookahead == '\r') + SKIP(279); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '\t' || + lookahead == ' ') + ADVANCE(281); END_STATE(); - case 290: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + case 280: + ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 291: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') - ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + case 281: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); + if (lookahead == '\t' || + lookahead == ' ') + ADVANCE(281); END_STATE(); - case 292: - ACCEPT_TOKEN(sym_identifier); + case 282: + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); if (lookahead == 'e') - ADVANCE(293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 293: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(168); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 294: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(177); - if (lookahead == 'w') - ADVANCE(191); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 295: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '&') ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') + if (lookahead == 'i') ADVANCE(237); - if (lookahead == '+') + if (lookahead == 'l') + ADVANCE(147); + if (lookahead == 'r') ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); if (lookahead == 's') - ADVANCE(275); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(240); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(295); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 296: + case 283: if (lookahead == '/') - ADVANCE(241); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(236); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'l') + ADVANCE(147); + if (lookahead == 'r') + ADVANCE(238); + if (lookahead == 's') + ADVANCE(240); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(296); + SKIP(283); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 297: - if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); + case 284: if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(50); if (lookahead == '/') - ADVANCE(61); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') - ADVANCE(90); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(232); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(297); - END_STATE(); - case 298: - if (lookahead == '=') - ADVANCE(3); - END_STATE(); - case 299: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') - ADVANCE(300); - if (lookahead == '=') - ADVANCE(41); - END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') - ADVANCE(239); - if (lookahead == '=') - ADVANCE(52); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_DOT); + SKIP(284); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 303: + case 285: if (lookahead == '!') - ADVANCE(298); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '%') - ADVANCE(38); if (lookahead == '&') - ADVANCE(299); + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(260); if (lookahead == '+') - ADVANCE(301); + ADVANCE(261); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(263); if (lookahead == '/') - ADVANCE(61); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); + ADVANCE(74); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') + ADVANCE(87); + if (lookahead == 'a') ADVANCE(90); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') - ADVANCE(228); - if (lookahead == '}') - ADVANCE(231); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(266); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'r') + ADVANCE(238); + if (lookahead == 's') + ADVANCE(273); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'v') + ADVANCE(211); + if (lookahead == '{') + ADVANCE(224); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(303); + SKIP(285); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 304: - if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + case 286: if (lookahead == '/') - ADVANCE(61); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); + ADVANCE(232); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(305); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '|') + ADVANCE(211); + if (lookahead == '}') ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(304); + SKIP(286); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 305: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(281); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 306: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(306); + ADVANCE(94); END_STATE(); - case 307: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); + case 287: if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); + ADVANCE(232); if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); + ADVANCE(288); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(289); if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); + ADVANCE(291); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(307); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(287); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') + ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') + ADVANCE(159); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') + ADVANCE(170); + if (lookahead == 't') + ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') + ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 308: + case 293: if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(308); + SKIP(293); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 309: + case 294: if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '=') + ADVANCE(295); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(309); + SKIP(294); END_STATE(); - case 310: + case 295: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 296: if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); + ADVANCE(44); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '=') - ADVANCE(311); + ADVANCE(295); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(310); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_EQ); + SKIP(296); END_STATE(); - case 312: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); + case 297: if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(240); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(232); if (lookahead == ';') - ADVANCE(77); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') - ADVANCE(90); + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(297); + END_STATE(); + case 298: + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '.') + ADVANCE(299); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(298); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 299: + if (lookahead == '.') + ADVANCE(56); + END_STATE(); + case 300: + if (lookahead == '\n') + ADVANCE(280); + if (lookahead == '/') + ADVANCE(248); + if (lookahead == '\\') + ADVANCE(253); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(301); + if (lookahead != 0) + ADVANCE(254); + END_STATE(); + case 301: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') + ADVANCE(248); + if (lookahead == '\\') + ADVANCE(253); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(301); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(254); + END_STATE(); + case 302: + if (lookahead == '#') + ADVANCE(303); + if (lookahead == '/') + ADVANCE(232); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(313); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(312); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(302); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 313: - ACCEPT_TOKEN(sym_identifier); + case 303: + if (lookahead == 'd') + ADVANCE(8); + if (lookahead == 'e') + ADVANCE(304); if (lookahead == 'i') - ADVANCE(177); - if (lookahead == 't') - ADVANCE(281); + ADVANCE(23); + if (lookahead == '\t' || + lookahead == ' ') + ADVANCE(303); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(14); + END_STATE(); + case 304: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') + ADVANCE(19); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(14); END_STATE(); - case 314: - if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + case 305: + if (lookahead == '#') + ADVANCE(306); if (lookahead == '/') - ADVANCE(61); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(232); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(314); + SKIP(305); + END_STATE(); + case 306: + if (lookahead == 'e') + ADVANCE(307); + if (lookahead == '\t' || + lookahead == ' ') + ADVANCE(306); + END_STATE(); + case 307: + if (lookahead == 'n') + ADVANCE(308); + END_STATE(); + case 308: + if (lookahead == 'd') + ADVANCE(309); + END_STATE(); + case 309: + if (lookahead == 'i') + ADVANCE(310); + END_STATE(); + case 310: + if (lookahead == 'f') + ADVANCE(311); + END_STATE(); + case 311: + ACCEPT_TOKEN(sym__pound_endif); END_STATE(); - case 315: + case 312: + if (lookahead == '#') + ADVANCE(231); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(272); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(315); + SKIP(312); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 316: - if (lookahead == '\n') - ADVANCE(317); - if (lookahead == '\r') - SKIP(316); - if (lookahead == '(') - ADVANCE(47); + case 313: if (lookahead == '/') - ADVANCE(241); - if (lookahead == '\t' || - lookahead == ' ') - ADVANCE(318); - END_STATE(); - case 317: - ACCEPT_TOKEN(anon_sym_LF); - END_STATE(); - case 318: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); + ADVANCE(232); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') - ADVANCE(318); + SKIP(313); END_STATE(); - case 319: - if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); + case 314: if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(50); if (lookahead == '/') - ADVANCE(61); - if (lookahead == '<') - ADVANCE(78); + ADVANCE(232); if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') + ADVANCE(295); + if (lookahead == '}') ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(319); + SKIP(314); END_STATE(); - case 320: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); + case 315: + if (lookahead == ',') + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '[') - ADVANCE(89); + ADVANCE(232); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(320); + SKIP(315); END_STATE(); - case 321: + case 316: + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(260); if (lookahead == '/') - ADVANCE(241); - if (lookahead == 'c') - ADVANCE(250); - if (lookahead == 'e') - ADVANCE(253); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(254); - if (lookahead == 's') - ADVANCE(322); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); + ADVANCE(232); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(321); + SKIP(316); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(173); - if (lookahead == 't') - ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 323: + case 317: if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(323); + SKIP(317); END_STATE(); - case 324: + case 318: if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(324); + SKIP(318); END_STATE(); - case 325: + case 319: if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 's') - ADVANCE(326); + ADVANCE(320); if (lookahead == 'u') - ADVANCE(282); + ADVANCE(269); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(325); + SKIP(319); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 326: + case 320: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'h') - ADVANCE(173); + ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 327: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); + case 321: if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); - if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); - if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(154); - if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '~') ADVANCE(232); + if (lookahead == '[') + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(327); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 328: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); + SKIP(321); + END_STATE(); + case 322: + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '.') + ADVANCE(299); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(272); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '{') - ADVANCE(227); + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(328); + SKIP(322); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 329: + case 323: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(7); if (lookahead == '&') - ADVANCE(299); + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(260); if (lookahead == '+') - ADVANCE(301); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(261); if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(263); if (lookahead == '/') - ADVANCE(61); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(121); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(151); if (lookahead == 's') - ADVANCE(305); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(329); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 330: - if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); - if (lookahead == '/') - ADVANCE(61); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '|') ADVANCE(228); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(330); - END_STATE(); - case 331: - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '}') - ADVANCE(231); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(331); + SKIP(323); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 332: + case 324: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); + if (lookahead == '#') + ADVANCE(231); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') - ADVANCE(90); + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(236); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(151); if (lookahead == 's') - ADVANCE(313); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(332); + SKIP(324); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 333: + case 325: + if (lookahead == '!') + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == '-') + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ']') + ADVANCE(87); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(272); + ADVANCE(264); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '}') - ADVANCE(231); + ADVANCE(211); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(333); + SKIP(325); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 334: + case 326: if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '&') - ADVANCE(299); + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(260); if (lookahead == '+') - ADVANCE(301); + ADVANCE(261); if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(263); if (lookahead == '/') - ADVANCE(61); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == 's') + ADVANCE(327); + if (lookahead == '{') + ADVANCE(224); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(334); + SKIP(326); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 335: + case 327: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') + ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 328: + if (lookahead == '\n') + ADVANCE(280); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(328); + END_STATE(); + case 329: + if (lookahead == ')') + ADVANCE(45); + if (lookahead == ',') + ADVANCE(50); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(329); + END_STATE(); + case 330: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); - if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); - if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(154); + ADVANCE(64); if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); + ADVANCE(327); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(335); + SKIP(330); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 336: - if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); + case 331: + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '}') + ADVANCE(228); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(331); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 332: if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(50); if (lookahead == '/') - ADVANCE(61); + ADVANCE(232); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); + ADVANCE(74); if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(336); + SKIP(332); END_STATE(); - case 337: + case 333: + if (lookahead == '(') + ADVANCE(44); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); - if (lookahead == 'w') - ADVANCE(338); + ADVANCE(232); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '[') + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(337); - END_STATE(); - case 338: - if (lookahead == 'h') - ADVANCE(339); - END_STATE(); - case 339: - if (lookahead == 'i') - ADVANCE(340); - END_STATE(); - case 340: - if (lookahead == 'l') - ADVANCE(341); - END_STATE(); - case 341: - if (lookahead == 'e') - ADVANCE(342); - END_STATE(); - case 342: - ACCEPT_TOKEN(anon_sym_while); + SKIP(333); END_STATE(); - case 343: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); + case 334: if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); + ADVANCE(260); + if (lookahead == '.') + ADVANCE(299); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); + if (lookahead == '[') + ADVANCE(86); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(277); + ADVANCE(240); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(343); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(334); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 344: - if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); + case 335: if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '/') - ADVANCE(61); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); + ADVANCE(232); if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(344); + SKIP(335); END_STATE(); - case 345: + case 336: if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '=') + ADVANCE(295); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(345); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(336); END_STATE(); - case 346: + case 337: if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(260); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '=') - ADVANCE(311); + ADVANCE(232); if (lookahead == '[') - ADVANCE(89); - if (lookahead == '{') - ADVANCE(227); + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(346); + SKIP(337); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 347: + case 338: + if (lookahead == '(') + ADVANCE(44); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); + if (lookahead == '=') + ADVANCE(295); + if (lookahead == '[') + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(347); + SKIP(338); END_STATE(); - case 348: - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '.') - ADVANCE(349); + case 339: + if (lookahead == '!') + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == '-') + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); - if (lookahead == 'a') - ADVANCE(93); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'i') - ADVANCE(269); + ADVANCE(288); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(289); if (lookahead == 's') - ADVANCE(272); - if (lookahead == 't') - ADVANCE(196); + ADVANCE(340); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(348); + SKIP(339); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 349: - if (lookahead == '.') - ADVANCE(59); + case 340: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') + ADVANCE(170); + if (lookahead == 'i') + ADVANCE(174); + if (lookahead == 't') + ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 350: + case 341: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); + if (lookahead == '#') + ADVANCE(7); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ']') - ADVANCE(90); + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(121); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(151); if (lookahead == 's') - ADVANCE(277); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); + if (lookahead == '{') + ADVANCE(224); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(350); + SKIP(341); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 351: + case 342: + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(342); + END_STATE(); + case 343: + if (lookahead == '/') + ADVANCE(232); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(343); + END_STATE(); + case 344: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == 'b') + ADVANCE(95); + if (lookahead == 'c') + ADVANCE(345); + if (lookahead == 'd') + ADVANCE(113); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); + if (lookahead == 'i') + ADVANCE(348); + if (lookahead == 'r') + ADVANCE(349); if (lookahead == 's') - ADVANCE(275); + ADVANCE(351); + if (lookahead == 'w') + ADVANCE(219); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(351); + SKIP(344); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 352: - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '.') - ADVANCE(349); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(352); - if (('A' <= lookahead && lookahead <= 'Z') || + case 345: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') + ADVANCE(101); + if (lookahead == 'o') + ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 346: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') + ADVANCE(347); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 353: - if (lookahead == '\n') - ADVANCE(317); - if (lookahead == '/') - ADVANCE(259); - if (lookahead == '\\') - ADVANCE(264); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(354); - if (lookahead != 0) - ADVANCE(265); + case 347: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') + ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 354: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') - ADVANCE(259); - if (lookahead == '\\') - ADVANCE(264); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(354); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(265); + case 348: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') + ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 355: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '.') - ADVANCE(349); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'c') - ADVANCE(250); + case 349: + ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(350); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') + ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(269); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(270); + ADVANCE(174); + if (lookahead == 'w') + ADVANCE(188); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 352: + if (lookahead == '!') + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == '-') + ADVANCE(263); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); if (lookahead == 's') - ADVANCE(272); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); + ADVANCE(327); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(355); + SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 356: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == ',') - ADVANCE(53); + case 353: if (lookahead == '/') - ADVANCE(241); - if (lookahead == '[') - ADVANCE(89); + ADVANCE(232); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(356); + SKIP(353); END_STATE(); - case 357: + case 354: if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(46); if (lookahead == '+') - ADVANCE(238); + ADVANCE(358); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == 's') - ADVANCE(275); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(58); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == '|') + ADVANCE(225); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(357); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(354); + END_STATE(); + case 355: + if (lookahead == '=') + ADVANCE(3); + END_STATE(); + case 356: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') + ADVANCE(357); + if (lookahead == '=') + ADVANCE(38); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 358: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(262); + if (lookahead == '=') + ADVANCE(49); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 360: if (lookahead == '!') - ADVANCE(234); + ADVANCE(355); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') - ADVANCE(359); + if (lookahead == '%') + ADVANCE(35); if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(46); if (lookahead == '+') - ADVANCE(238); + ADVANCE(358); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); + ADVANCE(58); + if (lookahead == ':') + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); - if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); - if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(154); - if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(74); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == '|') + ADVANCE(225); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(358); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 359: - if (lookahead == 'd') - ADVANCE(8); - if (lookahead == 'e') - ADVANCE(360); - if (lookahead == 'i') - ADVANCE(23); - if (lookahead == '\t' || - lookahead == ' ') - ADVANCE(359); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(14); - END_STATE(); - case 360: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') - ADVANCE(19); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(14); + SKIP(360); END_STATE(); case 361: - if (lookahead == '#') + if (lookahead == '!') + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); + if (lookahead == ',') + ADVANCE(50); + if (lookahead == '-') + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); + if (lookahead == '/') + ADVANCE(58); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(266); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'r') + ADVANCE(238); + if (lookahead == 's') ADVANCE(362); - if (lookahead == '/') - ADVANCE(241); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'v') + ADVANCE(211); + if (lookahead == '|') + ADVANCE(225); + if (lookahead == '}') + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(361); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 362: - if (lookahead == 'e') - ADVANCE(363); - if (lookahead == '\t' || - lookahead == ' ') - ADVANCE(362); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') + ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 363: - if (lookahead == 'n') - ADVANCE(364); - END_STATE(); - case 364: - if (lookahead == 'd') - ADVANCE(365); - END_STATE(); - case 365: - if (lookahead == 'i') - ADVANCE(366); - END_STATE(); - case 366: - if (lookahead == 'f') - ADVANCE(367); - END_STATE(); - case 367: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH); - END_STATE(); - case 368: + if (lookahead == '!') + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == '-') + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '[') - ADVANCE(89); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(236); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(151); if (lookahead == 's') - ADVANCE(305); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); + if (lookahead == '}') + ADVANCE(228); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(368); + SKIP(363); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 369: - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(369); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 370: + case 364: + if (lookahead == '!') + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); + if (lookahead == '-') + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); + ADVANCE(58); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '<') + ADVANCE(75); if (lookahead == '=') - ADVANCE(311); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(370); - END_STATE(); - case 371: - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '}') - ADVANCE(231); + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == '|') + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(371); + SKIP(364); END_STATE(); - case 372: + case 365: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); + if (lookahead == '-') + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(58); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); + if (lookahead == '^') + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(305); + ADVANCE(273); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(372); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 373: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(211); + if (lookahead == '|') + ADVANCE(225); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(373); + SKIP(365); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 374: + case 366: + if (lookahead == '!') + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(44); + if (lookahead == '*') + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == '-') + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '[') - ADVANCE(89); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ']') + ADVANCE(87); + if (lookahead == 's') + ADVANCE(327); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(374); + SKIP(366); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 375: + case 367: + if (lookahead == '!') + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(44); + if (lookahead == '*') + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); + if (lookahead == '-') + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(58); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == '|') + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(375); + SKIP(367); END_STATE(); - case 376: + case 368: if (lookahead == '!') - ADVANCE(298); - if (lookahead == '%') - ADVANCE(38); + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '&') - ADVANCE(299); + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(260); if (lookahead == '+') - ADVANCE(301); + ADVANCE(261); if (lookahead == '-') - ADVANCE(54); + ADVANCE(263); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == '|') + ADVANCE(86); + if (lookahead == 's') + ADVANCE(327); + if (lookahead == '{') + ADVANCE(224); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(376); + SKIP(368); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 377: + case 369: + if (lookahead == '.') + ADVANCE(299); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(369); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 370: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(58); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'c') - ADVANCE(250); - if (lookahead == 'e') - ADVANCE(279); - if (lookahead == 'i') - ADVANCE(269); - if (lookahead == 'r') - ADVANCE(270); - if (lookahead == 's') - ADVANCE(305); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'v') - ADVANCE(214); + ADVANCE(88); if (lookahead == '|') + ADVANCE(225); + if (lookahead == '}') ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(377); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(370); END_STATE(); - case 378: + case 371: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'c') - ADVANCE(250); - if (lookahead == 'e') - ADVANCE(279); - if (lookahead == 'i') - ADVANCE(269); - if (lookahead == 'r') - ADVANCE(270); - if (lookahead == 's') - ADVANCE(305); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'v') - ADVANCE(214); + ADVANCE(88); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(378); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(371); END_STATE(); - case 379: - if (lookahead == ')') - ADVANCE(48); + case 372: if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(379); + SKIP(372); END_STATE(); - case 380: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == ',') - ADVANCE(53); + case 373: + if (lookahead == '.') + ADVANCE(299); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '=') - ADVANCE(311); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '{') - ADVANCE(227); + ADVANCE(232); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(236); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'l') + ADVANCE(147); + if (lookahead == 'r') + ADVANCE(238); + if (lookahead == 's') + ADVANCE(240); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(380); + SKIP(373); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 381: + case 374: + if (lookahead == '!') + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); + if (lookahead == '-') + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); + ADVANCE(58); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == '|') + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(381); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(374); END_STATE(); - case 382: + case 375: if (lookahead == '!') - ADVANCE(2); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '%') - ADVANCE(38); + if (lookahead == '#') + ADVANCE(7); if (lookahead == '&') - ADVANCE(299); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(260); if (lookahead == '+') - ADVANCE(301); + ADVANCE(261); if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(263); if (lookahead == '/') - ADVANCE(61); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') - ADVANCE(90); - if (lookahead == '^') - ADVANCE(91); + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(236); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(151); if (lookahead == 's') - ADVANCE(313); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(382); + SKIP(375); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 383: + case 376: if (lookahead == '!') - ADVANCE(234); + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); + if (lookahead == '-') + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); + if (lookahead == '/') + ADVANCE(58); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == '|') + ADVANCE(225); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(376); + END_STATE(); + case 377: + if (lookahead == '!') + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ']') + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == 'a') ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); + if (lookahead == 'c') + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); + if (lookahead == 'e') + ADVANCE(236); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); + if (lookahead == 'i') + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); + if (lookahead == 'r') + ADVANCE(151); if (lookahead == 's') - ADVANCE(275); + ADVANCE(169); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(383); + SKIP(377); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 384: + case 378: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') - ADVANCE(90); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(384); + SKIP(378); END_STATE(); - case 385: - if (lookahead == ')') - ADVANCE(48); + case 379: if (lookahead == '/') - ADVANCE(241); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); + if (lookahead == 'w') + ADVANCE(380); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(385); + SKIP(379); END_STATE(); - case 386: - if (lookahead == '\n') - ADVANCE(317); + case 380: + if (lookahead == 'h') + ADVANCE(381); + END_STATE(); + case 381: + if (lookahead == 'i') + ADVANCE(382); + END_STATE(); + case 382: + if (lookahead == 'l') + ADVANCE(383); + END_STATE(); + case 383: + if (lookahead == 'e') + ADVANCE(384); + END_STATE(); + case 384: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 385: + if (lookahead == '!') + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '*') + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == '-') + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(236); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'l') + ADVANCE(147); + if (lookahead == 'r') + ADVANCE(238); + if (lookahead == 's') + ADVANCE(264); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(386); + SKIP(385); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 387: + case 386: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == '[') - ADVANCE(89); + ADVANCE(64); if (lookahead == 's') - ADVANCE(275); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); + ADVANCE(327); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(387); + SKIP(386); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); + END_STATE(); + case 387: + if (lookahead == '.') + ADVANCE(359); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == '=') + ADVANCE(295); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(387); END_STATE(); case 388: + if (lookahead == '(') + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(260); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '}') - ADVANCE(231); + ADVANCE(232); + if (lookahead == '[') + ADVANCE(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7224,3347 +7193,3329 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); case 389: + if (lookahead == '(') + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(260); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(232); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(266); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'r') + ADVANCE(238); + if (lookahead == 's') + ADVANCE(362); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'v') + ADVANCE(211); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(389); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 390: + if (lookahead == '!') + ADVANCE(258); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(303); + if (lookahead == '&') + ADVANCE(259); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(44); + if (lookahead == '*') + ADVANCE(260); + if (lookahead == '+') + ADVANCE(261); + if (lookahead == '-') + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); + if (lookahead == '0') + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); - if (lookahead == '=') - ADVANCE(311); - if (lookahead == '[') - ADVANCE(89); + ADVANCE(74); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); + if (lookahead == 'c') + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); + if (lookahead == 'e') + ADVANCE(236); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); + if (lookahead == 'i') + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); + if (lookahead == 'r') + ADVANCE(151); + if (lookahead == 's') + ADVANCE(169); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); + if (lookahead == '{') + ADVANCE(224); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(390); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 391: if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); - if (lookahead == '\'') - ADVANCE(42); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); - if (lookahead == '0') - ADVANCE(67); + ADVANCE(58); + if (lookahead == ':') + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); - if (lookahead == 's') - ADVANCE(275); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '|') - ADVANCE(228); - if (lookahead == '~') - ADVANCE(232); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(391); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 392: - if (lookahead == '.') - ADVANCE(349); - if (lookahead == '/') - ADVANCE(241); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); - if (lookahead == 'l') - ADVANCE(150); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(272); + ADVANCE(362); if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == '|') + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(392); + SKIP(391); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 393: + case 392: + if (lookahead == '!') + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); + if (lookahead == '-') + ADVANCE(51); if (lookahead == '.') - ADVANCE(349); + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); + ADVANCE(58); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '^') + ADVANCE(88); + if (lookahead == '|') + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(393); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(392); END_STATE(); - case 394: + case 393: if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); - if (lookahead == '\'') - ADVANCE(42); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(358); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); - if (lookahead == '0') - ADVANCE(67); + ADVANCE(58); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead == 'c') + ADVANCE(233); + if (lookahead == 'e') + ADVANCE(266); + if (lookahead == 'i') + ADVANCE(237); + if (lookahead == 'r') + ADVANCE(238); if (lookahead == 's') - ADVANCE(275); - if (lookahead == '{') - ADVANCE(227); + ADVANCE(362); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'v') + ADVANCE(211); if (lookahead == '|') - ADVANCE(228); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(394); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(393); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 394: + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(394); END_STATE(); case 395: if (lookahead == '!') - ADVANCE(298); + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); + if (lookahead == 's') + ADVANCE(327); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); - if (lookahead == '}') - ADVANCE(231); + ADVANCE(225); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(395); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); case 396: - if (lookahead == '.') - ADVANCE(302); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '=') - ADVANCE(311); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(396); - END_STATE(); - case 397: - if (lookahead == 0) - ADVANCE(1); if (lookahead == '!') - ADVANCE(234); + ADVANCE(2); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '#') - ADVANCE(235); + if (lookahead == '%') + ADVANCE(35); if (lookahead == '&') - ADVANCE(236); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(46); if (lookahead == '+') - ADVANCE(238); + ADVANCE(358); if (lookahead == '-') - ADVANCE(240); + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); - if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); - if (lookahead == 'e') - ADVANCE(124); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(154); + ADVANCE(64); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); + if (lookahead == '^') + ADVANCE(88); if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); + if (lookahead == '|') + ADVANCE(225); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(397); + SKIP(396); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 398: + case 397: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(64); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') + ADVANCE(225); + if (lookahead == '}') ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(398); + SKIP(397); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 399: + case 398: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '~') - ADVANCE(232); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(399); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 400: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '[') - ADVANCE(89); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(400); + SKIP(398); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 401: + case 399: + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '%') + ADVANCE(35); + if (lookahead == '&') + ADVANCE(356); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(46); + if (lookahead == '+') + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); + if (lookahead == '-') + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); + ADVANCE(58); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'c') - ADVANCE(250); - if (lookahead == 'e') - ADVANCE(279); - if (lookahead == 'i') - ADVANCE(269); - if (lookahead == 'r') - ADVANCE(270); + ADVANCE(86); + if (lookahead == '^') + ADVANCE(88); if (lookahead == 's') - ADVANCE(305); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'v') - ADVANCE(214); + ADVANCE(327); + if (lookahead == '{') + ADVANCE(224); + if (lookahead == '|') + ADVANCE(225); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(401); + SKIP(399); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 402: + case 400: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(235); + ADVANCE(231); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(121); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(402); + SKIP(400); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 403: + case 401: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); + if (lookahead == ':') + ADVANCE(73); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(403); + SKIP(401); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 404: - if (lookahead == '/') - ADVANCE(241); - if (lookahead == 'e') - ADVANCE(405); - if (lookahead == 'w') - ADVANCE(338); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(404); - END_STATE(); - case 405: - if (lookahead == 'l') - ADVANCE(406); - END_STATE(); - case 406: - if (lookahead == 's') - ADVANCE(407); - END_STATE(); - case 407: - if (lookahead == 'e') - ADVANCE(408); - END_STATE(); - case 408: - ACCEPT_TOKEN(anon_sym_else); + ADVANCE(94); END_STATE(); - case 409: + case 402: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') - ADVANCE(90); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '~') + ADVANCE(229); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(402); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 403: + if (lookahead == '/') ADVANCE(232); + if (lookahead == 'e') + ADVANCE(404); + if (lookahead == 'w') + ADVANCE(380); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(409); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(403); END_STATE(); - case 410: + case 404: + if (lookahead == 'l') + ADVANCE(405); + END_STATE(); + case 405: + if (lookahead == 's') + ADVANCE(406); + END_STATE(); + case 406: + if (lookahead == 'e') + ADVANCE(407); + END_STATE(); + case 407: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 408: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') ADVANCE(7); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(121); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(410); + SKIP(408); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 411: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '%') - ADVANCE(38); - if (lookahead == '&') - ADVANCE(299); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(49); - if (lookahead == '+') - ADVANCE(301); - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); - if (lookahead == '/') - ADVANCE(61); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '^') - ADVANCE(91); - if (lookahead == 's') - ADVANCE(275); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '|') - ADVANCE(228); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '~') - ADVANCE(232); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(411); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 412: + case 409: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(359); + ADVANCE(303); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(121); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(412); + SKIP(409); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 413: + case 410: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '.') - ADVANCE(349); + ADVANCE(299); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(277); + ADVANCE(264); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(413); + SKIP(410); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 414: + case 411: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '.') - ADVANCE(58); + ADVANCE(55); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(277); + ADVANCE(264); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(414); + SKIP(411); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 415: - if (lookahead == 0) - ADVANCE(1); + case 412: if (lookahead == '\n') - ADVANCE(317); + ADVANCE(280); if (lookahead == '!') - ADVANCE(416); + ADVANCE(413); if (lookahead == '\"') - ADVANCE(417); + ADVANCE(414); if (lookahead == '#') - ADVANCE(420); + ADVANCE(417); if (lookahead == '%') - ADVANCE(451); + ADVANCE(445); if (lookahead == '&') - ADVANCE(452); + ADVANCE(446); if (lookahead == '\'') - ADVANCE(453); + ADVANCE(447); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(458); + ADVANCE(452); if (lookahead == '+') - ADVANCE(459); + ADVANCE(453); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(460); + ADVANCE(454); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(461); + ADVANCE(455); if (lookahead == '0') - ADVANCE(462); + ADVANCE(456); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(471); + ADVANCE(465); if (lookahead == '=') - ADVANCE(473); + ADVANCE(467); if (lookahead == '>') - ADVANCE(474); + ADVANCE(468); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(476); + ADVANCE(470); if (lookahead == 'a') - ADVANCE(477); + ADVANCE(471); if (lookahead == 'b') - ADVANCE(482); + ADVANCE(476); if (lookahead == 'c') - ADVANCE(487); + ADVANCE(481); if (lookahead == 'd') - ADVANCE(500); + ADVANCE(494); if (lookahead == 'e') - ADVANCE(508); + ADVANCE(502); if (lookahead == 'f') - ADVANCE(520); + ADVANCE(514); if (lookahead == 'g') - ADVANCE(523); + ADVANCE(517); if (lookahead == 'i') - ADVANCE(527); + ADVANCE(521); if (lookahead == 'l') - ADVANCE(534); + ADVANCE(528); if (lookahead == 'r') - ADVANCE(538); + ADVANCE(532); if (lookahead == 's') - ADVANCE(556); + ADVANCE(550); if (lookahead == 't') - ADVANCE(580); + ADVANCE(574); if (lookahead == 'u') - ADVANCE(587); + ADVANCE(581); if (lookahead == 'v') - ADVANCE(598); + ADVANCE(592); if (lookahead == 'w') - ADVANCE(606); + ADVANCE(600); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(611); + ADVANCE(605); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(612); + ADVANCE(606); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(470); + ADVANCE(464); if (('A' <= lookahead && lookahead <= '_') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(481); - ADVANCE(265); + ADVANCE(475); + if (lookahead != 0) + ADVANCE(254); END_STATE(); - case 416: + case 413: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(3); END_STATE(); - case 417: + case 414: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(418); + ADVANCE(415); if (lookahead != 0 && lookahead != '\n') - ADVANCE(417); + ADVANCE(414); END_STATE(); - case 418: + case 415: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(265); + ADVANCE(254); if (lookahead == '\\') - ADVANCE(419); + ADVANCE(416); if (lookahead != 0) - ADVANCE(417); + ADVANCE(414); END_STATE(); - case 419: + case 416: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(265); + ADVANCE(254); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(418); + ADVANCE(415); if (lookahead != 0) - ADVANCE(417); + ADVANCE(414); END_STATE(); - case 420: + case 417: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == 'd') - ADVANCE(421); + ADVANCE(418); if (lookahead == 'e') - ADVANCE(428); + ADVANCE(425); if (lookahead == 'i') - ADVANCE(436); + ADVANCE(433); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(420); + ADVANCE(417); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 421: + case 418: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'e') - ADVANCE(422); + ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 422: + case 419: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'f') - ADVANCE(423); + ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 423: + case 420: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'i') - ADVANCE(424); + ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 424: + case 421: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'n') - ADVANCE(425); + ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 425: + case 422: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'e') - ADVANCE(426); + ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 426: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH); + case 423: + ACCEPT_TOKEN(sym__pound_define); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 427: + case 424: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 428: + case 425: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'l') - ADVANCE(429); + ADVANCE(426); if (lookahead == 'n') - ADVANCE(432); + ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 429: + case 426: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 's') - ADVANCE(430); + ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 430: + case 427: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'e') - ADVANCE(431); + ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 431: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH); + case 428: + ACCEPT_TOKEN(sym__pound_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 432: + case 429: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'd') - ADVANCE(433); + ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 433: + case 430: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'i') - ADVANCE(434); + ADVANCE(431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 434: + case 431: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'f') - ADVANCE(435); + ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 435: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH); + case 432: + ACCEPT_TOKEN(sym__pound_endif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 436: + case 433: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'f') - ADVANCE(437); + ADVANCE(434); if (lookahead == 'n') - ADVANCE(445); + ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 437: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH); + case 434: + ACCEPT_TOKEN(sym__pound_if); if (lookahead == 'd') - ADVANCE(438); + ADVANCE(435); if (lookahead == 'n') - ADVANCE(441); + ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 438: + case 435: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'e') - ADVANCE(439); + ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 439: + case 436: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'f') - ADVANCE(440); + ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 440: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH); + case 437: + ACCEPT_TOKEN(sym__pound_ifdef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 441: + case 438: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'd') - ADVANCE(442); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); - END_STATE(); - case 442: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') - ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); - END_STATE(); - case 443: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') - ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); - END_STATE(); - case 444: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH); + ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 445: + case 439: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'c') - ADVANCE(446); + ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 446: + case 440: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'l') - ADVANCE(447); + ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 447: + case 441: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'u') - ADVANCE(448); + ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 448: + case 442: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'd') - ADVANCE(449); + ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 449: + case 443: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'e') - ADVANCE(450); + ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 450: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH); + case 444: + ACCEPT_TOKEN(sym__pound_include); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(424); END_STATE(); - case 451: + case 445: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') - ADVANCE(39); + ADVANCE(36); END_STATE(); - case 452: + case 446: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') - ADVANCE(300); + ADVANCE(357); if (lookahead == '=') - ADVANCE(41); + ADVANCE(38); END_STATE(); - case 453: + case 447: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(46); + ADVANCE(43); if (lookahead == '\'') - ADVANCE(265); + ADVANCE(254); if (lookahead == '\\') - ADVANCE(454); + ADVANCE(448); if (lookahead != 0) - ADVANCE(455); + ADVANCE(449); END_STATE(); - case 454: + case 448: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(455); + ADVANCE(449); if (lookahead == '\'') - ADVANCE(456); + ADVANCE(450); if (lookahead == '\\') - ADVANCE(457); + ADVANCE(451); if (lookahead != 0) - ADVANCE(455); + ADVANCE(449); END_STATE(); - case 455: + case 449: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\'') - ADVANCE(45); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead != 0 && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 456: + case 450: ACCEPT_TOKEN(sym_char_literal); if (lookahead == '\'') - ADVANCE(45); + ADVANCE(42); END_STATE(); - case 457: + case 451: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(265); + ADVANCE(254); if (lookahead == '\'') - ADVANCE(45); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead != 0) - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 458: + case 452: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') - ADVANCE(50); + ADVANCE(47); END_STATE(); - case 459: + case 453: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') - ADVANCE(239); + ADVANCE(262); if (lookahead == '=') - ADVANCE(52); + ADVANCE(49); END_STATE(); - case 460: + case 454: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') - ADVANCE(55); + ADVANCE(52); if (lookahead == '=') - ADVANCE(56); + ADVANCE(53); if (lookahead == '>') - ADVANCE(57); + ADVANCE(54); END_STATE(); - case 461: + case 455: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') - ADVANCE(260); + ADVANCE(249); if (lookahead == '/') - ADVANCE(263); + ADVANCE(252); if (lookahead == '=') - ADVANCE(66); + ADVANCE(63); END_STATE(); - case 462: + case 456: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(463); + ADVANCE(457); if (lookahead == 'L') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'U') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'b') - ADVANCE(466); + ADVANCE(460); if (lookahead == 'l') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'u') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'x') - ADVANCE(468); + ADVANCE(462); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(470); + ADVANCE(464); END_STATE(); - case 463: + case 457: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(464); + ADVANCE(458); if (lookahead != 0 && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 464: + case 458: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'U') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'l') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'u') - ADVANCE(465); + ADVANCE(459); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(464); + ADVANCE(458); END_STATE(); - case 465: + case 459: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'U') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'l') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'u') - ADVANCE(465); + ADVANCE(459); END_STATE(); - case 466: + case 460: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == '0' || lookahead == '1') - ADVANCE(467); + ADVANCE(461); if (lookahead != 0 && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 467: + case 461: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'U') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'l') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'u') - ADVANCE(465); + ADVANCE(459); if (lookahead == '0' || lookahead == '1') - ADVANCE(467); + ADVANCE(461); END_STATE(); - case 468: + case 462: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(469); + ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'f')) - ADVANCE(469); + ADVANCE(463); if (lookahead != 0 && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 469: + case 463: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(469); + ADVANCE(463); if (lookahead == 'U') - ADVANCE(469); + ADVANCE(463); if (lookahead == '\\') - ADVANCE(469); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'u') - ADVANCE(465); + ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'f')) - ADVANCE(469); + ADVANCE(463); END_STATE(); - case 470: + case 464: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(463); + ADVANCE(457); if (lookahead == 'L') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'U') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'l') - ADVANCE(465); + ADVANCE(459); if (lookahead == 'u') - ADVANCE(465); + ADVANCE(459); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(470); + ADVANCE(464); END_STATE(); - case 471: + case 465: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') - ADVANCE(472); + ADVANCE(466); if (lookahead == '=') - ADVANCE(81); + ADVANCE(78); END_STATE(); - case 472: + case 466: ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') - ADVANCE(80); + ADVANCE(77); END_STATE(); - case 473: + case 467: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') - ADVANCE(83); + ADVANCE(80); END_STATE(); - case 474: + case 468: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') - ADVANCE(85); + ADVANCE(82); if (lookahead == '>') - ADVANCE(475); + ADVANCE(469); END_STATE(); - case 475: + case 469: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '=') - ADVANCE(87); + ADVANCE(84); END_STATE(); - case 476: + case 470: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') - ADVANCE(92); + ADVANCE(89); END_STATE(); - case 477: + case 471: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(478); + ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 478: + case 472: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(479); + ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 479: + case 473: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(480); + ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 480: + case 474: ACCEPT_TOKEN(anon_sym_auto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 481: + case 475: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 482: + case 476: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(483); + ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 483: + case 477: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(484); + ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 484: + case 478: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(485); + ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 485: + case 479: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'k') - ADVANCE(486); + ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 486: + case 480: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 487: + case 481: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(488); + ADVANCE(482); if (lookahead == 'o') - ADVANCE(491); + ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 488: + case 482: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(489); + ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 489: + case 483: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(490); + ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 490: + case 484: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 491: + case 485: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(492); + ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 492: + case 486: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(493); + ADVANCE(487); if (lookahead == 't') - ADVANCE(495); + ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 493: + case 487: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(494); + ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 494: + case 488: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 495: + case 489: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(496); + ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 496: + case 490: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(497); + ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 497: + case 491: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(498); + ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 498: + case 492: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(499); + ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 499: + case 493: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 500: + case 494: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(501); + ADVANCE(495); if (lookahead == 'o') - ADVANCE(507); + ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 501: + case 495: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'f') - ADVANCE(502); + ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 502: + case 496: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(503); + ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 503: + case 497: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(504); + ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 504: + case 498: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(505); + ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 505: + case 499: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(506); + ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 506: + case 500: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 507: + case 501: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 508: + case 502: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(509); + ADVANCE(503); if (lookahead == 'n') - ADVANCE(512); + ADVANCE(506); if (lookahead == 'x') - ADVANCE(515); + ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 509: + case 503: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(510); + ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 510: + case 504: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(511); + ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 511: + case 505: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 512: + case 506: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(513); + ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 513: + case 507: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'm') - ADVANCE(514); + ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 514: + case 508: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 515: + case 509: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(516); + ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 516: + case 510: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(517); + ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 517: + case 511: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(518); + ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 518: + case 512: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(519); + ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 519: + case 513: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 520: + case 514: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(521); + ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 521: + case 515: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(522); + ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 522: + case 516: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 523: + case 517: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(524); + ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 524: + case 518: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(525); + ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 525: + case 519: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(526); + ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 526: + case 520: ACCEPT_TOKEN(anon_sym_goto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 527: + case 521: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'f') - ADVANCE(528); + ADVANCE(522); if (lookahead == 'n') - ADVANCE(529); + ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 528: + case 522: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 529: + case 523: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(530); + ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 530: + case 524: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(531); + ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 531: + case 525: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(532); + ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 532: + case 526: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(533); + ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 533: + case 527: ACCEPT_TOKEN(sym_function_specifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 534: + case 528: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(535); + ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 535: + case 529: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(536); + ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 536: + case 530: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'g') - ADVANCE(537); + ADVANCE(531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 537: + case 531: ACCEPT_TOKEN(anon_sym_long); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 538: + case 532: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(539); + ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 539: + case 533: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'g') - ADVANCE(540); + ADVANCE(534); if (lookahead == 's') - ADVANCE(546); + ADVANCE(540); if (lookahead == 't') - ADVANCE(552); + ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 540: + case 534: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(541); + ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 541: + case 535: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(542); + ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 542: + case 536: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(543); + ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 543: + case 537: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(544); + ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 544: + case 538: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(545); + ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 545: + case 539: ACCEPT_TOKEN(anon_sym_register); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 546: + case 540: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(547); + ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 547: + case 541: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(548); + ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 548: + case 542: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(549); + ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 549: + case 543: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') - ADVANCE(550); + ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 550: + case 544: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(551); + ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 551: + case 545: ACCEPT_TOKEN(anon_sym_restrict); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 552: + case 546: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(553); + ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 553: + case 547: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(554); + ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 554: + case 548: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(555); + ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 555: + case 549: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 556: + case 550: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'h') - ADVANCE(557); + ADVANCE(551); if (lookahead == 'i') - ADVANCE(561); + ADVANCE(555); if (lookahead == 't') - ADVANCE(566); + ADVANCE(560); if (lookahead == 'w') - ADVANCE(575); + ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 557: + case 551: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(558); + ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 558: + case 552: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(559); + ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 559: + case 553: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(560); + ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 560: + case 554: ACCEPT_TOKEN(anon_sym_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 561: + case 555: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'z') - ADVANCE(562); + ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 562: + case 556: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(563); + ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 563: + case 557: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(564); + ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 564: + case 558: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'f') - ADVANCE(565); + ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 565: + case 559: ACCEPT_TOKEN(anon_sym_sizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 566: + case 560: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(567); + ADVANCE(561); if (lookahead == 'r') - ADVANCE(571); + ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 567: + case 561: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(568); + ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 568: + case 562: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(569); + ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 569: + case 563: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') - ADVANCE(570); + ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 570: + case 564: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 571: + case 565: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(572); + ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 572: + case 566: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') - ADVANCE(573); + ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 573: + case 567: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(574); + ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 574: + case 568: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 575: + case 569: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(576); + ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 576: + case 570: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(577); + ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 577: + case 571: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') - ADVANCE(578); + ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 578: + case 572: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'h') - ADVANCE(579); + ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 579: + case 573: ACCEPT_TOKEN(anon_sym_switch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 580: + case 574: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'y') - ADVANCE(581); + ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 581: + case 575: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'p') - ADVANCE(582); + ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 582: + case 576: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(583); + ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 583: + case 577: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'd') - ADVANCE(584); + ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 584: + case 578: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(585); + ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 585: + case 579: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'f') - ADVANCE(586); + ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 586: + case 580: ACCEPT_TOKEN(anon_sym_typedef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 587: + case 581: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(588); + ADVANCE(582); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 588: + case 582: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(589); + ADVANCE(583); if (lookahead == 's') - ADVANCE(592); + ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 589: + case 583: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(590); + ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 590: + case 584: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(591); + ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 591: + case 585: ACCEPT_TOKEN(anon_sym_union); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 592: + case 586: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(593); + ADVANCE(587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 593: + case 587: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'g') - ADVANCE(594); + ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 594: + case 588: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(595); + ADVANCE(589); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 595: + case 589: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(596); + ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 596: + case 590: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'd') - ADVANCE(597); + ADVANCE(591); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 597: + case 591: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 598: + case 592: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(599); + ADVANCE(593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 599: + case 593: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(600); + ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 600: + case 594: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(601); + ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 601: + case 595: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(602); + ADVANCE(596); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 602: + case 596: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(603); + ADVANCE(597); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 603: + case 597: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(604); + ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 604: + case 598: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(605); + ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 605: + case 599: ACCEPT_TOKEN(anon_sym_volatile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 606: + case 600: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'h') - ADVANCE(607); + ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 607: + case 601: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(608); + ADVANCE(602); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 608: + case 602: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(609); + ADVANCE(603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 609: + case 603: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(610); + ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 610: + case 604: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); END_STATE(); - case 611: + case 605: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '=') - ADVANCE(229); + ADVANCE(226); if (lookahead == '|') - ADVANCE(230); + ADVANCE(227); END_STATE(); - case 612: + case 606: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '!') - ADVANCE(416); + ADVANCE(413); if (lookahead == '\"') - ADVANCE(417); + ADVANCE(414); if (lookahead == '#') - ADVANCE(420); + ADVANCE(417); if (lookahead == '%') - ADVANCE(451); + ADVANCE(445); if (lookahead == '&') - ADVANCE(452); + ADVANCE(446); if (lookahead == '\'') - ADVANCE(453); + ADVANCE(447); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(458); + ADVANCE(452); if (lookahead == '+') - ADVANCE(459); + ADVANCE(453); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(460); + ADVANCE(454); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(461); + ADVANCE(455); if (lookahead == '0') - ADVANCE(462); + ADVANCE(456); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(471); + ADVANCE(465); if (lookahead == '=') - ADVANCE(473); + ADVANCE(467); if (lookahead == '>') - ADVANCE(474); + ADVANCE(468); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(476); + ADVANCE(470); if (lookahead == 'a') - ADVANCE(477); + ADVANCE(471); if (lookahead == 'b') - ADVANCE(482); + ADVANCE(476); if (lookahead == 'c') - ADVANCE(487); + ADVANCE(481); if (lookahead == 'd') - ADVANCE(500); + ADVANCE(494); if (lookahead == 'e') - ADVANCE(508); + ADVANCE(502); if (lookahead == 'f') - ADVANCE(520); + ADVANCE(514); if (lookahead == 'g') - ADVANCE(523); + ADVANCE(517); if (lookahead == 'i') - ADVANCE(527); + ADVANCE(521); if (lookahead == 'l') - ADVANCE(534); + ADVANCE(528); if (lookahead == 'r') - ADVANCE(538); + ADVANCE(532); if (lookahead == 's') - ADVANCE(556); + ADVANCE(550); if (lookahead == 't') - ADVANCE(580); + ADVANCE(574); if (lookahead == 'u') - ADVANCE(587); + ADVANCE(581); if (lookahead == 'v') - ADVANCE(598); + ADVANCE(592); if (lookahead == 'w') - ADVANCE(606); + ADVANCE(600); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(611); + ADVANCE(605); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(612); + ADVANCE(606); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(470); + ADVANCE(464); if (('A' <= lookahead && lookahead <= '_') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(481); + ADVANCE(475); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 613: + case 607: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') ADVANCE(7); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(121); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(613); + SKIP(607); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 614: + case 608: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(235); + ADVANCE(231); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(614); + SKIP(608); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 615: + case 609: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') @@ -10574,261 +10525,261 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(7); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(121); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(615); + SKIP(609); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 616: + case 610: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(616); + SKIP(610); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 617: + case 611: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(617); + SKIP(611); END_STATE(); - case 618: + case 612: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(618); + SKIP(612); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 619: + case 613: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') @@ -10838,102 +10789,102 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(7); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(619); + SKIP(613); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 620: + case 614: if (lookahead == '\n') - ADVANCE(317); + ADVANCE(280); if (lookahead == '\r') - SKIP(620); + SKIP(614); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10941,2153 +10892,1972 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(7); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(621); + ADVANCE(615); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 621: + case 615: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(621); + ADVANCE(615); END_STATE(); - case 622: + case 616: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(622); + SKIP(616); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 623: + case 617: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '.') - ADVANCE(349); + ADVANCE(299); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(277); + ADVANCE(264); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(623); + SKIP(617); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 624: + case 618: if (lookahead == '\n') - ADVANCE(317); + ADVANCE(280); if (lookahead == '!') - ADVANCE(625); + ADVANCE(619); if (lookahead == '%') - ADVANCE(451); + ADVANCE(445); if (lookahead == '&') - ADVANCE(452); + ADVANCE(446); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(458); + ADVANCE(452); if (lookahead == '+') - ADVANCE(459); + ADVANCE(453); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(460); + ADVANCE(454); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(461); + ADVANCE(455); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(471); + ADVANCE(465); if (lookahead == '=') - ADVANCE(473); + ADVANCE(467); if (lookahead == '>') - ADVANCE(474); + ADVANCE(468); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(476); + ADVANCE(470); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(611); + ADVANCE(605); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(626); + ADVANCE(620); if (lookahead != 0) - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 625: + case 619: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '=') ADVANCE(3); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead != 0 && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 626: + case 620: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '!') - ADVANCE(625); + ADVANCE(619); if (lookahead == '%') - ADVANCE(451); + ADVANCE(445); if (lookahead == '&') - ADVANCE(452); + ADVANCE(446); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(458); + ADVANCE(452); if (lookahead == '+') - ADVANCE(459); + ADVANCE(453); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(460); + ADVANCE(454); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(461); + ADVANCE(455); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(471); + ADVANCE(465); if (lookahead == '=') - ADVANCE(473); + ADVANCE(467); if (lookahead == '>') - ADVANCE(474); + ADVANCE(468); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(476); + ADVANCE(470); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(611); + ADVANCE(605); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(626); + ADVANCE(620); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 627: + case 621: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(627); + SKIP(621); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 628: + case 622: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(305); + ADVANCE(362); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(628); + SKIP(622); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 629: + case 623: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(629); + SKIP(623); END_STATE(); - case 630: + case 624: if (lookahead == '\n') - ADVANCE(317); + ADVANCE(280); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(259); + ADVANCE(248); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '=') - ADVANCE(311); + ADVANCE(295); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(631); + ADVANCE(625); if (lookahead != 0) - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 631: + case 625: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(259); + ADVANCE(248); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '=') - ADVANCE(311); + ADVANCE(295); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '\\') - ADVANCE(264); + ADVANCE(253); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(631); + ADVANCE(625); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(265); + ADVANCE(254); END_STATE(); - case 632: + case 626: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(313); + ADVANCE(273); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(632); + SKIP(626); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 633: + case 627: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(305); + ADVANCE(362); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(633); + SKIP(627); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 634: + case 628: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(634); + SKIP(628); END_STATE(); - case 635: + case 629: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(235); + ADVANCE(231); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); - if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); - if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(154); - if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '~') ADVANCE(232); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(635); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 636: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(235); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); - if (lookahead == '/') - ADVANCE(241); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); + if (lookahead == '[') + ADVANCE(86); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(636); + SKIP(629); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 637: + case 630: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(637); + SKIP(630); END_STATE(); - case 638: + case 631: if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(638); + SKIP(631); END_STATE(); - case 639: + case 632: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(305); + ADVANCE(362); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(639); + SKIP(632); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 640: + case 633: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '.') - ADVANCE(349); + ADVANCE(299); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == 'c') - ADVANCE(250); - if (lookahead == 'e') - ADVANCE(253); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(254); - if (lookahead == 's') - ADVANCE(256); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == '~') ADVANCE(232); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(640); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 641: - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(235); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '-') - ADVANCE(240); - if (lookahead == '/') - ADVANCE(241); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); + ADVANCE(64); if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); + ADVANCE(288); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(289); if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); + ADVANCE(340); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); + ADVANCE(211); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(641); + SKIP(633); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 642: - if (lookahead == 0) - ADVANCE(1); + case 634: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(7); + ADVANCE(231); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); + if (lookahead == ',') + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(642); + SKIP(634); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 643: + case 635: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(643); + SKIP(635); END_STATE(); - case 644: + case 636: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); + if (lookahead == '#') + ADVANCE(7); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); + if (lookahead == 'b') + ADVANCE(95); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(100); + if (lookahead == 'd') + ADVANCE(113); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(121); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(151); if (lookahead == 's') - ADVANCE(313); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == 'w') + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(644); + SKIP(636); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 645: + case 637: if (lookahead == '!') - ADVANCE(2); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); - if (lookahead == '%') - ADVANCE(38); + if (lookahead == '#') + ADVANCE(7); if (lookahead == '&') - ADVANCE(299); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(260); if (lookahead == '+') - ADVANCE(301); - if (lookahead == ',') - ADVANCE(53); + ADVANCE(261); if (lookahead == '-') - ADVANCE(54); - if (lookahead == '.') - ADVANCE(302); + ADVANCE(263); if (lookahead == '/') - ADVANCE(61); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); - if (lookahead == '<') - ADVANCE(78); - if (lookahead == '=') - ADVANCE(82); - if (lookahead == '>') - ADVANCE(84); - if (lookahead == '?') - ADVANCE(88); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == ']') + ADVANCE(74); + if (lookahead == 'a') ADVANCE(90); - if (lookahead == '^') - ADVANCE(91); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(288); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); + if (lookahead == 'e') + ADVANCE(121); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(291); + ADVANCE(140); + if (lookahead == 'l') + ADVANCE(147); if (lookahead == 'r') - ADVANCE(292); + ADVANCE(151); if (lookahead == 's') - ADVANCE(294); + ADVANCE(169); + if (lookahead == 't') + ADVANCE(193); + if (lookahead == 'u') + ADVANCE(200); + if (lookahead == 'v') + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); - if (lookahead == '|') - ADVANCE(228); + ADVANCE(224); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(645); + SKIP(637); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('h' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 646: + case 638: if (lookahead == '!') - ADVANCE(298); + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); + if (lookahead == '0') + ADVANCE(64); + if (lookahead == ':') + ADVANCE(73); + if (lookahead == ';') + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(250); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(279); + ADVANCE(266); if (lookahead == 'i') - ADVANCE(269); + ADVANCE(237); if (lookahead == 'r') - ADVANCE(270); + ADVANCE(238); if (lookahead == 's') - ADVANCE(305); + ADVANCE(273); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '|') + ADVANCE(225); + if (lookahead == '}') ADVANCE(228); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(646); + SKIP(638); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(97); - END_STATE(); - case 647: - if (lookahead == '(') - ADVANCE(47); - if (lookahead == ')') - ADVANCE(48); - if (lookahead == ',') - ADVANCE(53); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == '=') - ADVANCE(311); - if (lookahead == '[') - ADVANCE(89); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(647); + ADVANCE(94); END_STATE(); - case 648: + case 639: if (lookahead == '!') - ADVANCE(298); + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); + if (lookahead == '\'') + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); + if (lookahead == '0') + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); + if (lookahead == ']') + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); + if (lookahead == 'b') + ADVANCE(95); + if (lookahead == 'c') + ADVANCE(345); + if (lookahead == 'd') + ADVANCE(113); + if (lookahead == 'f') + ADVANCE(133); + if (lookahead == 'g') + ADVANCE(136); + if (lookahead == 'i') + ADVANCE(348); + if (lookahead == 'r') + ADVANCE(349); + if (lookahead == 's') + ADVANCE(351); + if (lookahead == 'w') + ADVANCE(219); + if (lookahead == '{') + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); + if (lookahead == '~') + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(648); + SKIP(639); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(94); END_STATE(); - case 649: + case 640: if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(235); + ADVANCE(355); + if (lookahead == '%') + ADVANCE(35); if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(46); if (lookahead == '+') - ADVANCE(238); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(51); + if (lookahead == '.') + ADVANCE(359); if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ';') - ADVANCE(77); + ADVANCE(58); + if (lookahead == '<') + ADVANCE(75); + if (lookahead == '=') + ADVANCE(79); + if (lookahead == '>') + ADVANCE(81); + if (lookahead == '?') + ADVANCE(85); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '^') + ADVANCE(88); if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); + ADVANCE(90); if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); + ADVANCE(233); if (lookahead == 'e') - ADVANCE(242); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); - if (lookahead == 'l') - ADVANCE(150); + ADVANCE(266); + if (lookahead == 'i') + ADVANCE(237); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(238); if (lookahead == 's') - ADVANCE(172); + ADVANCE(362); if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); + ADVANCE(193); if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(211); + if (lookahead == '|') + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(649); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + SKIP(640); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(94); + END_STATE(); + case 641: + if (lookahead == '(') + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == ',') + ADVANCE(50); + if (lookahead == '/') + ADVANCE(232); + if (lookahead == ';') + ADVANCE(74); + if (lookahead == '=') + ADVANCE(295); + if (lookahead == '[') + ADVANCE(86); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(641); END_STATE(); - case 650: + case 642: if (lookahead == '!') - ADVANCE(298); + ADVANCE(355); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); + if (lookahead == ')') + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); - if (lookahead == '{') - ADVANCE(227); + ADVANCE(88); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(650); + SKIP(642); END_STATE(); - case 651: + case 643: if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '=') - ADVANCE(311); + ADVANCE(295); if (lookahead == '[') - ADVANCE(89); - if (lookahead == '{') - ADVANCE(227); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(651); - END_STATE(); - case 652: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '!') - ADVANCE(234); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(236); - if (lookahead == '\'') - ADVANCE(42); - if (lookahead == '(') - ADVANCE(47); - if (lookahead == '*') - ADVANCE(237); - if (lookahead == '+') - ADVANCE(238); - if (lookahead == '-') - ADVANCE(240); - if (lookahead == '/') - ADVANCE(241); - if (lookahead == '0') - ADVANCE(67); - if (lookahead == ':') - ADVANCE(76); - if (lookahead == ';') - ADVANCE(77); - if (lookahead == 'a') - ADVANCE(93); - if (lookahead == 'b') - ADVANCE(98); - if (lookahead == 'c') - ADVANCE(103); - if (lookahead == 'd') - ADVANCE(116); - if (lookahead == 'e') - ADVANCE(124); - if (lookahead == 'f') - ADVANCE(136); - if (lookahead == 'g') - ADVANCE(139); - if (lookahead == 'i') - ADVANCE(143); - if (lookahead == 'l') - ADVANCE(150); - if (lookahead == 'r') - ADVANCE(154); - if (lookahead == 's') - ADVANCE(172); - if (lookahead == 't') - ADVANCE(196); - if (lookahead == 'u') - ADVANCE(203); - if (lookahead == 'v') - ADVANCE(214); - if (lookahead == 'w') - ADVANCE(222); + ADVANCE(86); if (lookahead == '{') - ADVANCE(227); - if (lookahead == '}') - ADVANCE(231); - if (lookahead == '~') - ADVANCE(232); + ADVANCE(224); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(652); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + SKIP(643); END_STATE(); - case 653: + case 644: if (lookahead == '!') - ADVANCE(234); + ADVANCE(258); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') ADVANCE(7); if (lookahead == '&') - ADVANCE(236); + ADVANCE(259); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(237); + ADVANCE(260); if (lookahead == '+') - ADVANCE(238); + ADVANCE(261); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(240); + ADVANCE(263); if (lookahead == '/') - ADVANCE(241); + ADVANCE(232); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == 'a') - ADVANCE(93); + ADVANCE(90); if (lookahead == 'b') - ADVANCE(98); + ADVANCE(95); if (lookahead == 'c') - ADVANCE(103); + ADVANCE(100); if (lookahead == 'd') - ADVANCE(116); + ADVANCE(113); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(236); if (lookahead == 'f') - ADVANCE(136); + ADVANCE(133); if (lookahead == 'g') - ADVANCE(139); + ADVANCE(136); if (lookahead == 'i') - ADVANCE(143); + ADVANCE(140); if (lookahead == 'l') - ADVANCE(150); + ADVANCE(147); if (lookahead == 'r') - ADVANCE(154); + ADVANCE(151); if (lookahead == 's') - ADVANCE(172); + ADVANCE(169); if (lookahead == 't') - ADVANCE(196); + ADVANCE(193); if (lookahead == 'u') - ADVANCE(203); + ADVANCE(200); if (lookahead == 'v') - ADVANCE(214); + ADVANCE(211); if (lookahead == 'w') - ADVANCE(222); + ADVANCE(219); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(653); + SKIP(644); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 654: + case 645: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ':') - ADVANCE(76); + ADVANCE(73); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == ']') - ADVANCE(90); + ADVANCE(87); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(654); + SKIP(645); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 655: + case 646: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(655); + SKIP(646); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 656: + case 647: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == ')') - ADVANCE(48); + ADVANCE(45); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(656); + SKIP(647); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); - case 657: + case 648: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') ADVANCE(4); if (lookahead == '%') - ADVANCE(38); + ADVANCE(35); if (lookahead == '&') - ADVANCE(299); + ADVANCE(356); if (lookahead == '\'') - ADVANCE(42); + ADVANCE(39); if (lookahead == '(') - ADVANCE(47); + ADVANCE(44); if (lookahead == '*') - ADVANCE(49); + ADVANCE(46); if (lookahead == '+') - ADVANCE(301); + ADVANCE(358); if (lookahead == ',') - ADVANCE(53); + ADVANCE(50); if (lookahead == '-') - ADVANCE(54); + ADVANCE(51); if (lookahead == '.') - ADVANCE(302); + ADVANCE(359); if (lookahead == '/') - ADVANCE(61); + ADVANCE(58); if (lookahead == '0') - ADVANCE(67); + ADVANCE(64); if (lookahead == ';') - ADVANCE(77); + ADVANCE(74); if (lookahead == '<') - ADVANCE(78); + ADVANCE(75); if (lookahead == '=') - ADVANCE(82); + ADVANCE(79); if (lookahead == '>') - ADVANCE(84); + ADVANCE(81); if (lookahead == '?') - ADVANCE(88); + ADVANCE(85); if (lookahead == '[') - ADVANCE(89); + ADVANCE(86); if (lookahead == '^') - ADVANCE(91); + ADVANCE(88); if (lookahead == 's') - ADVANCE(275); + ADVANCE(327); if (lookahead == '{') - ADVANCE(227); + ADVANCE(224); if (lookahead == '|') - ADVANCE(228); + ADVANCE(225); if (lookahead == '}') - ADVANCE(231); + ADVANCE(228); if (lookahead == '~') - ADVANCE(232); + ADVANCE(229); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(657); + SKIP(648); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(75); + ADVANCE(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(97); + ADVANCE(94); END_STATE(); default: return false; @@ -13096,1588 +12866,1515 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 233}, - [2] = {.lex_state = 243}, - [3] = {.lex_state = 248}, - [4] = {.lex_state = 249}, - [5] = {.lex_state = 258}, - [6] = {.lex_state = 248}, - [7] = {.lex_state = 258}, - [8] = {.lex_state = 267}, - [9] = {.lex_state = 268}, - [10] = {.lex_state = 273}, - [11] = {.lex_state = 274}, - [12] = {.lex_state = 276}, - [13] = {.lex_state = 276}, - [14] = {.lex_state = 276}, - [15] = {.lex_state = 278}, - [16] = {.lex_state = 284}, - [17] = {.lex_state = 284}, - [18] = {.lex_state = 284}, - [19] = {.lex_state = 285}, - [20] = {.lex_state = 285}, - [21] = {.lex_state = 274}, - [22] = {.lex_state = 286}, - [23] = {.lex_state = 285}, - [24] = {.lex_state = 287}, - [25] = {.lex_state = 285}, - [26] = {.lex_state = 295}, - [27] = {.lex_state = 296}, - [28] = {.lex_state = 296}, - [29] = {.lex_state = 248}, - [30] = {.lex_state = 274}, - [31] = {.lex_state = 274}, - [32] = {.lex_state = 274}, - [33] = {.lex_state = 274}, - [34] = {.lex_state = 274}, - [35] = {.lex_state = 297}, - [36] = {.lex_state = 303}, - [37] = {.lex_state = 304}, - [38] = {.lex_state = 306}, - [39] = {.lex_state = 307}, - [40] = {.lex_state = 307}, - [41] = {.lex_state = 307}, - [42] = {.lex_state = 308}, - [43] = {.lex_state = 309}, - [44] = {.lex_state = 310}, - [45] = {.lex_state = 312}, - [46] = {.lex_state = 312}, - [47] = {.lex_state = 314}, - [48] = {.lex_state = 296}, - [49] = {.lex_state = 233}, - [50] = {.lex_state = 315}, - [51] = {.lex_state = 278}, - [52] = {.lex_state = 307}, - [53] = {.lex_state = 316}, - [54] = {.lex_state = 249}, - [55] = {.lex_state = 274}, - [56] = {.lex_state = 274}, - [57] = {.lex_state = 274}, - [58] = {.lex_state = 274}, - [59] = {.lex_state = 274}, - [60] = {.lex_state = 274}, - [61] = {.lex_state = 319}, - [62] = {.lex_state = 320}, - [63] = {.lex_state = 321}, - [64] = {.lex_state = 323}, - [65] = {.lex_state = 319}, - [66] = {.lex_state = 324}, - [67] = {.lex_state = 324}, - [68] = {.lex_state = 325}, - [69] = {.lex_state = 321}, - [70] = {.lex_state = 327}, - [71] = {.lex_state = 327}, - [72] = {.lex_state = 307}, - [73] = {.lex_state = 328}, - [74] = {.lex_state = 267}, - [75] = {.lex_state = 285}, - [76] = {.lex_state = 285}, - [77] = {.lex_state = 274}, - [78] = {.lex_state = 286}, - [79] = {.lex_state = 285}, - [80] = {.lex_state = 285}, - [81] = {.lex_state = 329}, - [82] = {.lex_state = 273}, - [83] = {.lex_state = 330}, - [84] = {.lex_state = 310}, - [85] = {.lex_state = 297}, - [86] = {.lex_state = 331}, - [87] = {.lex_state = 332}, - [88] = {.lex_state = 312}, - [89] = {.lex_state = 333}, - [90] = {.lex_state = 332}, - [91] = {.lex_state = 312}, - [92] = {.lex_state = 332}, - [93] = {.lex_state = 312}, - [94] = {.lex_state = 274}, - [95] = {.lex_state = 274}, - [96] = {.lex_state = 249}, - [97] = {.lex_state = 274}, - [98] = {.lex_state = 274}, - [99] = {.lex_state = 274}, - [100] = {.lex_state = 274}, - [101] = {.lex_state = 274}, - [102] = {.lex_state = 297}, - [103] = {.lex_state = 334}, - [104] = {.lex_state = 335}, - [105] = {.lex_state = 274}, - [106] = {.lex_state = 249}, - [107] = {.lex_state = 285}, - [108] = {.lex_state = 285}, - [109] = {.lex_state = 274}, - [110] = {.lex_state = 286}, - [111] = {.lex_state = 285}, - [112] = {.lex_state = 285}, - [113] = {.lex_state = 336}, - [114] = {.lex_state = 337}, - [115] = {.lex_state = 343}, - [116] = {.lex_state = 249}, - [117] = {.lex_state = 267}, - [118] = {.lex_state = 274}, - [119] = {.lex_state = 274}, - [120] = {.lex_state = 274}, - [121] = {.lex_state = 274}, - [122] = {.lex_state = 274}, - [123] = {.lex_state = 344}, - [124] = {.lex_state = 267}, - [125] = {.lex_state = 267}, - [126] = {.lex_state = 296}, - [127] = {.lex_state = 297}, - [128] = {.lex_state = 297}, - [129] = {.lex_state = 297}, - [130] = {.lex_state = 249}, - [131] = {.lex_state = 314}, - [132] = {.lex_state = 303}, - [133] = {.lex_state = 303}, - [134] = {.lex_state = 321}, - [135] = {.lex_state = 287}, - [136] = {.lex_state = 345}, - [137] = {.lex_state = 307}, - [138] = {.lex_state = 345}, - [139] = {.lex_state = 310}, - [140] = {.lex_state = 346}, - [141] = {.lex_state = 347}, - [142] = {.lex_state = 348}, - [143] = {.lex_state = 350}, - [144] = {.lex_state = 307}, - [145] = {.lex_state = 310}, - [146] = {.lex_state = 312}, - [147] = {.lex_state = 351}, - [148] = {.lex_state = 274}, - [149] = {.lex_state = 267}, - [150] = {.lex_state = 274}, - [151] = {.lex_state = 274}, - [152] = {.lex_state = 274}, - [153] = {.lex_state = 274}, - [154] = {.lex_state = 274}, - [155] = {.lex_state = 274}, - [156] = {.lex_state = 274}, - [157] = {.lex_state = 274}, - [158] = {.lex_state = 274}, - [159] = {.lex_state = 274}, - [160] = {.lex_state = 274}, - [161] = {.lex_state = 274}, - [162] = {.lex_state = 274}, - [163] = {.lex_state = 297}, - [164] = {.lex_state = 248}, - [165] = {.lex_state = 297}, - [166] = {.lex_state = 307}, - [167] = {.lex_state = 276}, - [168] = {.lex_state = 312}, - [169] = {.lex_state = 312}, - [170] = {.lex_state = 278}, - [171] = {.lex_state = 312}, - [172] = {.lex_state = 258}, - [173] = {.lex_state = 307}, - [174] = {.lex_state = 352}, - [175] = {.lex_state = 353}, - [176] = {.lex_state = 324}, - [177] = {.lex_state = 319}, - [178] = {.lex_state = 249}, - [179] = {.lex_state = 249}, - [180] = {.lex_state = 319}, - [181] = {.lex_state = 310}, - [182] = {.lex_state = 355}, - [183] = {.lex_state = 323}, - [184] = {.lex_state = 350}, - [185] = {.lex_state = 320}, - [186] = {.lex_state = 356}, - [187] = {.lex_state = 356}, - [188] = {.lex_state = 274}, - [189] = {.lex_state = 297}, - [190] = {.lex_state = 274}, - [191] = {.lex_state = 274}, - [192] = {.lex_state = 274}, - [193] = {.lex_state = 274}, - [194] = {.lex_state = 274}, - [195] = {.lex_state = 274}, - [196] = {.lex_state = 274}, - [197] = {.lex_state = 274}, - [198] = {.lex_state = 274}, - [199] = {.lex_state = 274}, - [200] = {.lex_state = 274}, - [201] = {.lex_state = 274}, - [202] = {.lex_state = 357}, - [203] = {.lex_state = 321}, - [204] = {.lex_state = 323}, - [205] = {.lex_state = 307}, - [206] = {.lex_state = 358}, - [207] = {.lex_state = 285}, - [208] = {.lex_state = 285}, - [209] = {.lex_state = 274}, - [210] = {.lex_state = 286}, - [211] = {.lex_state = 285}, - [212] = {.lex_state = 285}, - [213] = {.lex_state = 304}, - [214] = {.lex_state = 361}, - [215] = {.lex_state = 327}, - [216] = {.lex_state = 307}, - [217] = {.lex_state = 361}, - [218] = {.lex_state = 327}, - [219] = {.lex_state = 273}, - [220] = {.lex_state = 345}, - [221] = {.lex_state = 368}, - [222] = {.lex_state = 307}, - [223] = {.lex_state = 345}, - [224] = {.lex_state = 274}, - [225] = {.lex_state = 274}, - [226] = {.lex_state = 334}, - [227] = {.lex_state = 335}, - [228] = {.lex_state = 274}, - [229] = {.lex_state = 343}, - [230] = {.lex_state = 287}, - [231] = {.lex_state = 267}, - [232] = {.lex_state = 369}, - [233] = {.lex_state = 312}, - [234] = {.lex_state = 370}, - [235] = {.lex_state = 371}, - [236] = {.lex_state = 312}, - [237] = {.lex_state = 345}, - [238] = {.lex_state = 333}, - [239] = {.lex_state = 312}, - [240] = {.lex_state = 345}, - [241] = {.lex_state = 274}, - [242] = {.lex_state = 372}, - [243] = {.lex_state = 373}, - [244] = {.lex_state = 374}, + [1] = {.lex_state = 230}, + [2] = {.lex_state = 241}, + [3] = {.lex_state = 246}, + [4] = {.lex_state = 247}, + [5] = {.lex_state = 246}, + [6] = {.lex_state = 247}, + [7] = {.lex_state = 256}, + [8] = {.lex_state = 257}, + [9] = {.lex_state = 257}, + [10] = {.lex_state = 257}, + [11] = {.lex_state = 265}, + [12] = {.lex_state = 271}, + [13] = {.lex_state = 271}, + [14] = {.lex_state = 271}, + [15] = {.lex_state = 272}, + [16] = {.lex_state = 274}, + [17] = {.lex_state = 275}, + [18] = {.lex_state = 276}, + [19] = {.lex_state = 272}, + [20] = {.lex_state = 272}, + [21] = {.lex_state = 230}, + [22] = {.lex_state = 277}, + [23] = {.lex_state = 265}, + [24] = {.lex_state = 278}, + [25] = {.lex_state = 279}, + [26] = {.lex_state = 282}, + [27] = {.lex_state = 282}, + [28] = {.lex_state = 278}, + [29] = {.lex_state = 283}, + [30] = {.lex_state = 284}, + [31] = {.lex_state = 285}, + [32] = {.lex_state = 272}, + [33] = {.lex_state = 286}, + [34] = {.lex_state = 285}, + [35] = {.lex_state = 272}, + [36] = {.lex_state = 285}, + [37] = {.lex_state = 272}, + [38] = {.lex_state = 287}, + [39] = {.lex_state = 293}, + [40] = {.lex_state = 278}, + [41] = {.lex_state = 293}, + [42] = {.lex_state = 294}, + [43] = {.lex_state = 296}, + [44] = {.lex_state = 294}, + [45] = {.lex_state = 297}, + [46] = {.lex_state = 272}, + [47] = {.lex_state = 275}, + [48] = {.lex_state = 257}, + [49] = {.lex_state = 272}, + [50] = {.lex_state = 265}, + [51] = {.lex_state = 272}, + [52] = {.lex_state = 247}, + [53] = {.lex_state = 278}, + [54] = {.lex_state = 298}, + [55] = {.lex_state = 300}, + [56] = {.lex_state = 275}, + [57] = {.lex_state = 302}, + [58] = {.lex_state = 305}, + [59] = {.lex_state = 282}, + [60] = {.lex_state = 275}, + [61] = {.lex_state = 305}, + [62] = {.lex_state = 282}, + [63] = {.lex_state = 312}, + [64] = {.lex_state = 275}, + [65] = {.lex_state = 293}, + [66] = {.lex_state = 313}, + [67] = {.lex_state = 272}, + [68] = {.lex_state = 314}, + [69] = {.lex_state = 315}, + [70] = {.lex_state = 272}, + [71] = {.lex_state = 272}, + [72] = {.lex_state = 316}, + [73] = {.lex_state = 286}, + [74] = {.lex_state = 286}, + [75] = {.lex_state = 272}, + [76] = {.lex_state = 272}, + [77] = {.lex_state = 287}, + [78] = {.lex_state = 317}, + [79] = {.lex_state = 318}, + [80] = {.lex_state = 319}, + [81] = {.lex_state = 287}, + [82] = {.lex_state = 293}, + [83] = {.lex_state = 321}, + [84] = {.lex_state = 294}, + [85] = {.lex_state = 322}, + [86] = {.lex_state = 293}, + [87] = {.lex_state = 323}, + [88] = {.lex_state = 324}, + [89] = {.lex_state = 325}, + [90] = {.lex_state = 326}, + [91] = {.lex_state = 275}, + [92] = {.lex_state = 294}, + [93] = {.lex_state = 297}, + [94] = {.lex_state = 272}, + [95] = {.lex_state = 328}, + [96] = {.lex_state = 329}, + [97] = {.lex_state = 300}, + [98] = {.lex_state = 278}, + [99] = {.lex_state = 328}, + [100] = {.lex_state = 302}, + [101] = {.lex_state = 275}, + [102] = {.lex_state = 305}, + [103] = {.lex_state = 275}, + [104] = {.lex_state = 305}, + [105] = {.lex_state = 275}, + [106] = {.lex_state = 312}, + [107] = {.lex_state = 272}, + [108] = {.lex_state = 330}, + [109] = {.lex_state = 331}, + [110] = {.lex_state = 315}, + [111] = {.lex_state = 293}, + [112] = {.lex_state = 286}, + [113] = {.lex_state = 293}, + [114] = {.lex_state = 330}, + [115] = {.lex_state = 332}, + [116] = {.lex_state = 333}, + [117] = {.lex_state = 332}, + [118] = {.lex_state = 332}, + [119] = {.lex_state = 332}, + [120] = {.lex_state = 272}, + [121] = {.lex_state = 286}, + [122] = {.lex_state = 334}, + [123] = {.lex_state = 317}, + [124] = {.lex_state = 325}, + [125] = {.lex_state = 321}, + [126] = {.lex_state = 335}, + [127] = {.lex_state = 335}, + [128] = {.lex_state = 272}, + [129] = {.lex_state = 287}, + [130] = {.lex_state = 317}, + [131] = {.lex_state = 294}, + [132] = {.lex_state = 329}, + [133] = {.lex_state = 336}, + [134] = {.lex_state = 337}, + [135] = {.lex_state = 293}, + [136] = {.lex_state = 338}, + [137] = {.lex_state = 297}, + [138] = {.lex_state = 339}, + [139] = {.lex_state = 247}, + [140] = {.lex_state = 246}, + [141] = {.lex_state = 341}, + [142] = {.lex_state = 323}, + [143] = {.lex_state = 330}, + [144] = {.lex_state = 342}, + [145] = {.lex_state = 342}, + [146] = {.lex_state = 330}, + [147] = {.lex_state = 343}, + [148] = {.lex_state = 342}, + [149] = {.lex_state = 344}, + [150] = {.lex_state = 342}, + [151] = {.lex_state = 352}, + [152] = {.lex_state = 353}, + [153] = {.lex_state = 353}, + [154] = {.lex_state = 246}, + [155] = {.lex_state = 330}, + [156] = {.lex_state = 330}, + [157] = {.lex_state = 330}, + [158] = {.lex_state = 330}, + [159] = {.lex_state = 354}, + [160] = {.lex_state = 360}, + [161] = {.lex_state = 361}, + [162] = {.lex_state = 363}, + [163] = {.lex_state = 363}, + [164] = {.lex_state = 363}, + [165] = {.lex_state = 276}, + [166] = {.lex_state = 364}, + [167] = {.lex_state = 353}, + [168] = {.lex_state = 324}, + [169] = {.lex_state = 339}, + [170] = {.lex_state = 330}, + [171] = {.lex_state = 294}, + [172] = {.lex_state = 330}, + [173] = {.lex_state = 330}, + [174] = {.lex_state = 330}, + [175] = {.lex_state = 330}, + [176] = {.lex_state = 365}, + [177] = {.lex_state = 366}, + [178] = {.lex_state = 367}, + [179] = {.lex_state = 368}, + [180] = {.lex_state = 354}, + [181] = {.lex_state = 364}, + [182] = {.lex_state = 297}, + [183] = {.lex_state = 293}, + [184] = {.lex_state = 323}, + [185] = {.lex_state = 278}, + [186] = {.lex_state = 369}, + [187] = {.lex_state = 300}, + [188] = {.lex_state = 329}, + [189] = {.lex_state = 278}, + [190] = {.lex_state = 275}, + [191] = {.lex_state = 275}, + [192] = {.lex_state = 275}, + [193] = {.lex_state = 339}, + [194] = {.lex_state = 330}, + [195] = {.lex_state = 330}, + [196] = {.lex_state = 330}, + [197] = {.lex_state = 330}, + [198] = {.lex_state = 330}, + [199] = {.lex_state = 370}, + [200] = {.lex_state = 272}, + [201] = {.lex_state = 315}, + [202] = {.lex_state = 331}, + [203] = {.lex_state = 293}, + [204] = {.lex_state = 321}, + [205] = {.lex_state = 332}, + [206] = {.lex_state = 339}, + [207] = {.lex_state = 330}, + [208] = {.lex_state = 330}, + [209] = {.lex_state = 330}, + [210] = {.lex_state = 330}, + [211] = {.lex_state = 330}, + [212] = {.lex_state = 371}, + [213] = {.lex_state = 293}, + [214] = {.lex_state = 286}, + [215] = {.lex_state = 325}, + [216] = {.lex_state = 330}, + [217] = {.lex_state = 332}, + [218] = {.lex_state = 372}, + [219] = {.lex_state = 321}, + [220] = {.lex_state = 335}, + [221] = {.lex_state = 335}, + [222] = {.lex_state = 366}, + [223] = {.lex_state = 367}, + [224] = {.lex_state = 325}, + [225] = {.lex_state = 335}, + [226] = {.lex_state = 321}, + [227] = {.lex_state = 373}, + [228] = {.lex_state = 336}, + [229] = {.lex_state = 329}, + [230] = {.lex_state = 334}, + [231] = {.lex_state = 337}, + [232] = {.lex_state = 335}, + [233] = {.lex_state = 335}, + [234] = {.lex_state = 339}, + [235] = {.lex_state = 330}, + [236] = {.lex_state = 330}, + [237] = {.lex_state = 330}, + [238] = {.lex_state = 330}, + [239] = {.lex_state = 330}, + [240] = {.lex_state = 374}, + [241] = {.lex_state = 374}, + [242] = {.lex_state = 318}, + [243] = {.lex_state = 318}, + [244] = {.lex_state = 375}, [245] = {.lex_state = 375}, - [246] = {.lex_state = 375}, - [247] = {.lex_state = 375}, - [248] = {.lex_state = 333}, - [249] = {.lex_state = 333}, - [250] = {.lex_state = 312}, - [251] = {.lex_state = 312}, - [252] = {.lex_state = 249}, - [253] = {.lex_state = 274}, - [254] = {.lex_state = 274}, - [255] = {.lex_state = 274}, - [256] = {.lex_state = 274}, - [257] = {.lex_state = 274}, - [258] = {.lex_state = 376}, - [259] = {.lex_state = 376}, - [260] = {.lex_state = 319}, - [261] = {.lex_state = 324}, - [262] = {.lex_state = 249}, - [263] = {.lex_state = 334}, - [264] = {.lex_state = 274}, - [265] = {.lex_state = 274}, - [266] = {.lex_state = 335}, - [267] = {.lex_state = 274}, - [268] = {.lex_state = 274}, - [269] = {.lex_state = 274}, - [270] = {.lex_state = 274}, - [271] = {.lex_state = 274}, - [272] = {.lex_state = 274}, - [273] = {.lex_state = 274}, - [274] = {.lex_state = 274}, - [275] = {.lex_state = 274}, - [276] = {.lex_state = 274}, - [277] = {.lex_state = 377}, - [278] = {.lex_state = 267}, - [279] = {.lex_state = 345}, - [280] = {.lex_state = 376}, - [281] = {.lex_state = 274}, - [282] = {.lex_state = 274}, - [283] = {.lex_state = 334}, - [284] = {.lex_state = 335}, - [285] = {.lex_state = 274}, - [286] = {.lex_state = 343}, - [287] = {.lex_state = 287}, - [288] = {.lex_state = 285}, - [289] = {.lex_state = 295}, - [290] = {.lex_state = 378}, - [291] = {.lex_state = 344}, - [292] = {.lex_state = 324}, - [293] = {.lex_state = 249}, - [294] = {.lex_state = 344}, - [295] = {.lex_state = 267}, - [296] = {.lex_state = 274}, - [297] = {.lex_state = 274}, - [298] = {.lex_state = 274}, - [299] = {.lex_state = 274}, - [300] = {.lex_state = 274}, - [301] = {.lex_state = 274}, - [302] = {.lex_state = 274}, - [303] = {.lex_state = 274}, - [304] = {.lex_state = 274}, - [305] = {.lex_state = 274}, - [306] = {.lex_state = 274}, - [307] = {.lex_state = 274}, - [308] = {.lex_state = 267}, - [309] = {.lex_state = 324}, - [310] = {.lex_state = 303}, - [311] = {.lex_state = 324}, - [312] = {.lex_state = 336}, - [313] = {.lex_state = 267}, - [314] = {.lex_state = 345}, - [315] = {.lex_state = 345}, - [316] = {.lex_state = 267}, - [317] = {.lex_state = 357}, - [318] = {.lex_state = 307}, - [319] = {.lex_state = 347}, - [320] = {.lex_state = 379}, - [321] = {.lex_state = 380}, - [322] = {.lex_state = 381}, - [323] = {.lex_state = 249}, - [324] = {.lex_state = 274}, - [325] = {.lex_state = 310}, - [326] = {.lex_state = 274}, - [327] = {.lex_state = 274}, - [328] = {.lex_state = 274}, - [329] = {.lex_state = 274}, - [330] = {.lex_state = 382}, - [331] = {.lex_state = 383}, - [332] = {.lex_state = 384}, - [333] = {.lex_state = 297}, - [334] = {.lex_state = 319}, - [335] = {.lex_state = 314}, - [336] = {.lex_state = 385}, - [337] = {.lex_state = 297}, - [338] = {.lex_state = 384}, - [339] = {.lex_state = 314}, - [340] = {.lex_state = 334}, - [341] = {.lex_state = 314}, - [342] = {.lex_state = 314}, - [343] = {.lex_state = 314}, - [344] = {.lex_state = 314}, - [345] = {.lex_state = 314}, - [346] = {.lex_state = 314}, - [347] = {.lex_state = 314}, - [348] = {.lex_state = 314}, - [349] = {.lex_state = 314}, - [350] = {.lex_state = 297}, - [351] = {.lex_state = 312}, - [352] = {.lex_state = 386}, - [353] = {.lex_state = 379}, - [354] = {.lex_state = 353}, - [355] = {.lex_state = 307}, - [356] = {.lex_state = 386}, - [357] = {.lex_state = 357}, - [358] = {.lex_state = 324}, - [359] = {.lex_state = 320}, - [360] = {.lex_state = 356}, - [361] = {.lex_state = 356}, - [362] = {.lex_state = 383}, - [363] = {.lex_state = 384}, - [364] = {.lex_state = 350}, - [365] = {.lex_state = 356}, - [366] = {.lex_state = 319}, - [367] = {.lex_state = 319}, - [368] = {.lex_state = 334}, - [369] = {.lex_state = 319}, - [370] = {.lex_state = 319}, - [371] = {.lex_state = 319}, - [372] = {.lex_state = 319}, - [373] = {.lex_state = 319}, - [374] = {.lex_state = 319}, - [375] = {.lex_state = 319}, - [376] = {.lex_state = 319}, - [377] = {.lex_state = 319}, - [378] = {.lex_state = 387}, - [379] = {.lex_state = 297}, - [380] = {.lex_state = 297}, - [381] = {.lex_state = 320}, - [382] = {.lex_state = 285}, - [383] = {.lex_state = 285}, - [384] = {.lex_state = 274}, - [385] = {.lex_state = 286}, - [386] = {.lex_state = 285}, - [387] = {.lex_state = 285}, - [388] = {.lex_state = 304}, - [389] = {.lex_state = 358}, - [390] = {.lex_state = 274}, - [391] = {.lex_state = 274}, - [392] = {.lex_state = 334}, - [393] = {.lex_state = 335}, - [394] = {.lex_state = 274}, - [395] = {.lex_state = 343}, - [396] = {.lex_state = 287}, - [397] = {.lex_state = 307}, - [398] = {.lex_state = 361}, - [399] = {.lex_state = 307}, - [400] = {.lex_state = 361}, - [401] = {.lex_state = 307}, - [402] = {.lex_state = 273}, - [403] = {.lex_state = 376}, - [404] = {.lex_state = 376}, - [405] = {.lex_state = 335}, - [406] = {.lex_state = 377}, - [407] = {.lex_state = 376}, - [408] = {.lex_state = 295}, - [409] = {.lex_state = 344}, - [410] = {.lex_state = 336}, - [411] = {.lex_state = 312}, - [412] = {.lex_state = 274}, - [413] = {.lex_state = 388}, - [414] = {.lex_state = 371}, - [415] = {.lex_state = 345}, - [416] = {.lex_state = 375}, - [417] = {.lex_state = 320}, - [418] = {.lex_state = 375}, - [419] = {.lex_state = 344}, - [420] = {.lex_state = 333}, - [421] = {.lex_state = 274}, - [422] = {.lex_state = 374}, - [423] = {.lex_state = 345}, - [424] = {.lex_state = 350}, - [425] = {.lex_state = 375}, - [426] = {.lex_state = 389}, - [427] = {.lex_state = 312}, - [428] = {.lex_state = 333}, - [429] = {.lex_state = 324}, - [430] = {.lex_state = 249}, - [431] = {.lex_state = 376}, - [432] = {.lex_state = 287}, - [433] = {.lex_state = 274}, - [434] = {.lex_state = 274}, - [435] = {.lex_state = 274}, - [436] = {.lex_state = 274}, - [437] = {.lex_state = 274}, - [438] = {.lex_state = 274}, - [439] = {.lex_state = 274}, - [440] = {.lex_state = 274}, - [441] = {.lex_state = 274}, - [442] = {.lex_state = 274}, - [443] = {.lex_state = 274}, - [444] = {.lex_state = 274}, - [445] = {.lex_state = 287}, - [446] = {.lex_state = 357}, - [447] = {.lex_state = 324}, - [448] = {.lex_state = 334}, - [449] = {.lex_state = 267}, - [450] = {.lex_state = 334}, - [451] = {.lex_state = 334}, - [452] = {.lex_state = 334}, - [453] = {.lex_state = 334}, - [454] = {.lex_state = 334}, - [455] = {.lex_state = 334}, - [456] = {.lex_state = 334}, - [457] = {.lex_state = 334}, - [458] = {.lex_state = 334}, - [459] = {.lex_state = 334}, - [460] = {.lex_state = 345}, - [461] = {.lex_state = 390}, - [462] = {.lex_state = 287}, - [463] = {.lex_state = 376}, - [464] = {.lex_state = 376}, - [465] = {.lex_state = 335}, - [466] = {.lex_state = 377}, - [467] = {.lex_state = 376}, - [468] = {.lex_state = 295}, - [469] = {.lex_state = 344}, - [470] = {.lex_state = 274}, - [471] = {.lex_state = 351}, - [472] = {.lex_state = 344}, - [473] = {.lex_state = 295}, - [474] = {.lex_state = 357}, - [475] = {.lex_state = 324}, - [476] = {.lex_state = 344}, - [477] = {.lex_state = 334}, - [478] = {.lex_state = 344}, - [479] = {.lex_state = 344}, - [480] = {.lex_state = 344}, - [481] = {.lex_state = 344}, - [482] = {.lex_state = 344}, - [483] = {.lex_state = 344}, - [484] = {.lex_state = 344}, - [485] = {.lex_state = 344}, - [486] = {.lex_state = 344}, - [487] = {.lex_state = 391}, - [488] = {.lex_state = 312}, - [489] = {.lex_state = 390}, - [490] = {.lex_state = 347}, - [491] = {.lex_state = 314}, - [492] = {.lex_state = 347}, - [493] = {.lex_state = 345}, - [494] = {.lex_state = 267}, - [495] = {.lex_state = 392}, - [496] = {.lex_state = 380}, - [497] = {.lex_state = 379}, - [498] = {.lex_state = 355}, - [499] = {.lex_state = 381}, - [500] = {.lex_state = 356}, - [501] = {.lex_state = 356}, - [502] = {.lex_state = 324}, - [503] = {.lex_state = 249}, - [504] = {.lex_state = 384}, - [505] = {.lex_state = 310}, - [506] = {.lex_state = 384}, - [507] = {.lex_state = 274}, - [508] = {.lex_state = 274}, - [509] = {.lex_state = 274}, - [510] = {.lex_state = 274}, - [511] = {.lex_state = 274}, - [512] = {.lex_state = 274}, - [513] = {.lex_state = 274}, - [514] = {.lex_state = 274}, - [515] = {.lex_state = 274}, - [516] = {.lex_state = 274}, - [517] = {.lex_state = 274}, - [518] = {.lex_state = 274}, - [519] = {.lex_state = 274}, - [520] = {.lex_state = 297}, - [521] = {.lex_state = 379}, - [522] = {.lex_state = 297}, - [523] = {.lex_state = 274}, - [524] = {.lex_state = 307}, - [525] = {.lex_state = 393}, - [526] = {.lex_state = 353}, - [527] = {.lex_state = 379}, - [528] = {.lex_state = 307}, - [529] = {.lex_state = 394}, - [530] = {.lex_state = 356}, - [531] = {.lex_state = 356}, - [532] = {.lex_state = 384}, - [533] = {.lex_state = 383}, - [534] = {.lex_state = 274}, - [535] = {.lex_state = 249}, - [536] = {.lex_state = 297}, - [537] = {.lex_state = 274}, - [538] = {.lex_state = 274}, - [539] = {.lex_state = 274}, - [540] = {.lex_state = 274}, - [541] = {.lex_state = 274}, - [542] = {.lex_state = 274}, - [543] = {.lex_state = 248}, - [544] = {.lex_state = 395}, - [545] = {.lex_state = 371}, - [546] = {.lex_state = 371}, - [547] = {.lex_state = 396}, - [548] = {.lex_state = 396}, - [549] = {.lex_state = 274}, - [550] = {.lex_state = 274}, - [551] = {.lex_state = 334}, - [552] = {.lex_state = 335}, - [553] = {.lex_state = 274}, - [554] = {.lex_state = 343}, - [555] = {.lex_state = 287}, - [556] = {.lex_state = 376}, - [557] = {.lex_state = 376}, - [558] = {.lex_state = 335}, - [559] = {.lex_state = 377}, + [246] = {.lex_state = 354}, + [247] = {.lex_state = 330}, + [248] = {.lex_state = 330}, + [249] = {.lex_state = 339}, + [250] = {.lex_state = 330}, + [251] = {.lex_state = 330}, + [252] = {.lex_state = 330}, + [253] = {.lex_state = 330}, + [254] = {.lex_state = 330}, + [255] = {.lex_state = 376}, + [256] = {.lex_state = 377}, + [257] = {.lex_state = 330}, + [258] = {.lex_state = 342}, + [259] = {.lex_state = 342}, + [260] = {.lex_state = 330}, + [261] = {.lex_state = 343}, + [262] = {.lex_state = 342}, + [263] = {.lex_state = 342}, + [264] = {.lex_state = 378}, + [265] = {.lex_state = 379}, + [266] = {.lex_state = 385}, + [267] = {.lex_state = 341}, + [268] = {.lex_state = 371}, + [269] = {.lex_state = 341}, + [270] = {.lex_state = 341}, + [271] = {.lex_state = 353}, + [272] = {.lex_state = 354}, + [273] = {.lex_state = 354}, + [274] = {.lex_state = 354}, + [275] = {.lex_state = 339}, + [276] = {.lex_state = 364}, + [277] = {.lex_state = 360}, + [278] = {.lex_state = 360}, + [279] = {.lex_state = 344}, + [280] = {.lex_state = 338}, + [281] = {.lex_state = 386}, + [282] = {.lex_state = 330}, + [283] = {.lex_state = 341}, + [284] = {.lex_state = 330}, + [285] = {.lex_state = 330}, + [286] = {.lex_state = 330}, + [287] = {.lex_state = 330}, + [288] = {.lex_state = 330}, + [289] = {.lex_state = 330}, + [290] = {.lex_state = 330}, + [291] = {.lex_state = 330}, + [292] = {.lex_state = 330}, + [293] = {.lex_state = 330}, + [294] = {.lex_state = 330}, + [295] = {.lex_state = 330}, + [296] = {.lex_state = 330}, + [297] = {.lex_state = 354}, + [298] = {.lex_state = 246}, + [299] = {.lex_state = 354}, + [300] = {.lex_state = 323}, + [301] = {.lex_state = 363}, + [302] = {.lex_state = 363}, + [303] = {.lex_state = 363}, + [304] = {.lex_state = 318}, + [305] = {.lex_state = 339}, + [306] = {.lex_state = 367}, + [307] = {.lex_state = 294}, + [308] = {.lex_state = 367}, + [309] = {.lex_state = 330}, + [310] = {.lex_state = 330}, + [311] = {.lex_state = 330}, + [312] = {.lex_state = 330}, + [313] = {.lex_state = 330}, + [314] = {.lex_state = 330}, + [315] = {.lex_state = 330}, + [316] = {.lex_state = 330}, + [317] = {.lex_state = 330}, + [318] = {.lex_state = 330}, + [319] = {.lex_state = 330}, + [320] = {.lex_state = 330}, + [321] = {.lex_state = 354}, + [322] = {.lex_state = 330}, + [323] = {.lex_state = 246}, + [324] = {.lex_state = 370}, + [325] = {.lex_state = 315}, + [326] = {.lex_state = 315}, + [327] = {.lex_state = 387}, + [328] = {.lex_state = 387}, + [329] = {.lex_state = 338}, + [330] = {.lex_state = 297}, + [331] = {.lex_state = 329}, + [332] = {.lex_state = 369}, + [333] = {.lex_state = 300}, + [334] = {.lex_state = 318}, + [335] = {.lex_state = 339}, + [336] = {.lex_state = 370}, + [337] = {.lex_state = 330}, + [338] = {.lex_state = 330}, + [339] = {.lex_state = 330}, + [340] = {.lex_state = 330}, + [341] = {.lex_state = 330}, + [342] = {.lex_state = 330}, + [343] = {.lex_state = 330}, + [344] = {.lex_state = 330}, + [345] = {.lex_state = 330}, + [346] = {.lex_state = 330}, + [347] = {.lex_state = 330}, + [348] = {.lex_state = 330}, + [349] = {.lex_state = 272}, + [350] = {.lex_state = 315}, + [351] = {.lex_state = 332}, + [352] = {.lex_state = 318}, + [353] = {.lex_state = 339}, + [354] = {.lex_state = 371}, + [355] = {.lex_state = 286}, + [356] = {.lex_state = 330}, + [357] = {.lex_state = 330}, + [358] = {.lex_state = 330}, + [359] = {.lex_state = 330}, + [360] = {.lex_state = 330}, + [361] = {.lex_state = 330}, + [362] = {.lex_state = 330}, + [363] = {.lex_state = 330}, + [364] = {.lex_state = 330}, + [365] = {.lex_state = 330}, + [366] = {.lex_state = 330}, + [367] = {.lex_state = 330}, + [368] = {.lex_state = 333}, + [369] = {.lex_state = 332}, + [370] = {.lex_state = 366}, + [371] = {.lex_state = 367}, + [372] = {.lex_state = 371}, + [373] = {.lex_state = 293}, + [374] = {.lex_state = 330}, + [375] = {.lex_state = 335}, + [376] = {.lex_state = 335}, + [377] = {.lex_state = 367}, + [378] = {.lex_state = 366}, + [379] = {.lex_state = 329}, + [380] = {.lex_state = 373}, + [381] = {.lex_state = 336}, + [382] = {.lex_state = 388}, + [383] = {.lex_state = 389}, + [384] = {.lex_state = 318}, + [385] = {.lex_state = 339}, + [386] = {.lex_state = 374}, + [387] = {.lex_state = 330}, + [388] = {.lex_state = 354}, + [389] = {.lex_state = 330}, + [390] = {.lex_state = 330}, + [391] = {.lex_state = 330}, + [392] = {.lex_state = 330}, + [393] = {.lex_state = 330}, + [394] = {.lex_state = 330}, + [395] = {.lex_state = 330}, + [396] = {.lex_state = 330}, + [397] = {.lex_state = 330}, + [398] = {.lex_state = 330}, + [399] = {.lex_state = 330}, + [400] = {.lex_state = 330}, + [401] = {.lex_state = 326}, + [402] = {.lex_state = 363}, + [403] = {.lex_state = 390}, + [404] = {.lex_state = 342}, + [405] = {.lex_state = 342}, + [406] = {.lex_state = 330}, + [407] = {.lex_state = 343}, + [408] = {.lex_state = 342}, + [409] = {.lex_state = 342}, + [410] = {.lex_state = 391}, + [411] = {.lex_state = 305}, + [412] = {.lex_state = 375}, + [413] = {.lex_state = 363}, + [414] = {.lex_state = 305}, + [415] = {.lex_state = 375}, + [416] = {.lex_state = 339}, + [417] = {.lex_state = 330}, + [418] = {.lex_state = 330}, + [419] = {.lex_state = 330}, + [420] = {.lex_state = 330}, + [421] = {.lex_state = 330}, + [422] = {.lex_state = 392}, + [423] = {.lex_state = 392}, + [424] = {.lex_state = 318}, + [425] = {.lex_state = 339}, + [426] = {.lex_state = 376}, + [427] = {.lex_state = 330}, + [428] = {.lex_state = 330}, + [429] = {.lex_state = 377}, + [430] = {.lex_state = 330}, + [431] = {.lex_state = 330}, + [432] = {.lex_state = 330}, + [433] = {.lex_state = 330}, + [434] = {.lex_state = 330}, + [435] = {.lex_state = 330}, + [436] = {.lex_state = 330}, + [437] = {.lex_state = 330}, + [438] = {.lex_state = 330}, + [439] = {.lex_state = 330}, + [440] = {.lex_state = 391}, + [441] = {.lex_state = 341}, + [442] = {.lex_state = 293}, + [443] = {.lex_state = 392}, + [444] = {.lex_state = 330}, + [445] = {.lex_state = 330}, + [446] = {.lex_state = 376}, + [447] = {.lex_state = 377}, + [448] = {.lex_state = 330}, + [449] = {.lex_state = 385}, + [450] = {.lex_state = 344}, + [451] = {.lex_state = 342}, + [452] = {.lex_state = 352}, + [453] = {.lex_state = 393}, + [454] = {.lex_state = 371}, + [455] = {.lex_state = 341}, + [456] = {.lex_state = 341}, + [457] = {.lex_state = 318}, + [458] = {.lex_state = 360}, + [459] = {.lex_state = 378}, + [460] = {.lex_state = 341}, + [461] = {.lex_state = 354}, + [462] = {.lex_state = 374}, + [463] = {.lex_state = 364}, + [464] = {.lex_state = 394}, + [465] = {.lex_state = 354}, + [466] = {.lex_state = 367}, + [467] = {.lex_state = 364}, + [468] = {.lex_state = 376}, + [469] = {.lex_state = 364}, + [470] = {.lex_state = 364}, + [471] = {.lex_state = 364}, + [472] = {.lex_state = 364}, + [473] = {.lex_state = 364}, + [474] = {.lex_state = 364}, + [475] = {.lex_state = 364}, + [476] = {.lex_state = 364}, + [477] = {.lex_state = 364}, + [478] = {.lex_state = 354}, + [479] = {.lex_state = 326}, + [480] = {.lex_state = 318}, + [481] = {.lex_state = 294}, + [482] = {.lex_state = 367}, + [483] = {.lex_state = 376}, + [484] = {.lex_state = 367}, + [485] = {.lex_state = 367}, + [486] = {.lex_state = 367}, + [487] = {.lex_state = 367}, + [488] = {.lex_state = 367}, + [489] = {.lex_state = 367}, + [490] = {.lex_state = 367}, + [491] = {.lex_state = 367}, + [492] = {.lex_state = 367}, + [493] = {.lex_state = 367}, + [494] = {.lex_state = 387}, + [495] = {.lex_state = 368}, + [496] = {.lex_state = 354}, + [497] = {.lex_state = 326}, + [498] = {.lex_state = 387}, + [499] = {.lex_state = 329}, + [500] = {.lex_state = 326}, + [501] = {.lex_state = 318}, + [502] = {.lex_state = 370}, + [503] = {.lex_state = 376}, + [504] = {.lex_state = 370}, + [505] = {.lex_state = 370}, + [506] = {.lex_state = 370}, + [507] = {.lex_state = 370}, + [508] = {.lex_state = 370}, + [509] = {.lex_state = 370}, + [510] = {.lex_state = 370}, + [511] = {.lex_state = 370}, + [512] = {.lex_state = 370}, + [513] = {.lex_state = 326}, + [514] = {.lex_state = 318}, + [515] = {.lex_state = 371}, + [516] = {.lex_state = 376}, + [517] = {.lex_state = 371}, + [518] = {.lex_state = 371}, + [519] = {.lex_state = 371}, + [520] = {.lex_state = 371}, + [521] = {.lex_state = 371}, + [522] = {.lex_state = 371}, + [523] = {.lex_state = 371}, + [524] = {.lex_state = 371}, + [525] = {.lex_state = 371}, + [526] = {.lex_state = 332}, + [527] = {.lex_state = 367}, + [528] = {.lex_state = 286}, + [529] = {.lex_state = 333}, + [530] = {.lex_state = 371}, + [531] = {.lex_state = 335}, + [532] = {.lex_state = 367}, + [533] = {.lex_state = 329}, + [534] = {.lex_state = 326}, + [535] = {.lex_state = 318}, + [536] = {.lex_state = 374}, + [537] = {.lex_state = 374}, + [538] = {.lex_state = 376}, + [539] = {.lex_state = 374}, + [540] = {.lex_state = 374}, + [541] = {.lex_state = 374}, + [542] = {.lex_state = 374}, + [543] = {.lex_state = 374}, + [544] = {.lex_state = 374}, + [545] = {.lex_state = 374}, + [546] = {.lex_state = 374}, + [547] = {.lex_state = 374}, + [548] = {.lex_state = 354}, + [549] = {.lex_state = 354}, + [550] = {.lex_state = 342}, + [551] = {.lex_state = 342}, + [552] = {.lex_state = 330}, + [553] = {.lex_state = 343}, + [554] = {.lex_state = 342}, + [555] = {.lex_state = 342}, + [556] = {.lex_state = 391}, + [557] = {.lex_state = 390}, + [558] = {.lex_state = 330}, + [559] = {.lex_state = 330}, [560] = {.lex_state = 376}, - [561] = {.lex_state = 295}, - [562] = {.lex_state = 344}, - [563] = {.lex_state = 336}, - [564] = {.lex_state = 307}, - [565] = {.lex_state = 307}, - [566] = {.lex_state = 307}, - [567] = {.lex_state = 287}, - [568] = {.lex_state = 287}, - [569] = {.lex_state = 287}, - [570] = {.lex_state = 351}, - [571] = {.lex_state = 344}, - [572] = {.lex_state = 295}, - [573] = {.lex_state = 395}, - [574] = {.lex_state = 312}, - [575] = {.lex_state = 371}, - [576] = {.lex_state = 388}, - [577] = {.lex_state = 375}, - [578] = {.lex_state = 333}, - [579] = {.lex_state = 344}, - [580] = {.lex_state = 274}, - [581] = {.lex_state = 389}, - [582] = {.lex_state = 374}, - [583] = {.lex_state = 375}, - [584] = {.lex_state = 383}, - [585] = {.lex_state = 384}, - [586] = {.lex_state = 345}, - [587] = {.lex_state = 357}, - [588] = {.lex_state = 324}, - [589] = {.lex_state = 285}, - [590] = {.lex_state = 285}, - [591] = {.lex_state = 274}, - [592] = {.lex_state = 286}, - [593] = {.lex_state = 285}, - [594] = {.lex_state = 285}, - [595] = {.lex_state = 336}, - [596] = {.lex_state = 397}, + [561] = {.lex_state = 377}, + [562] = {.lex_state = 330}, + [563] = {.lex_state = 385}, + [564] = {.lex_state = 344}, + [565] = {.lex_state = 363}, + [566] = {.lex_state = 363}, + [567] = {.lex_state = 305}, + [568] = {.lex_state = 363}, + [569] = {.lex_state = 363}, + [570] = {.lex_state = 305}, + [571] = {.lex_state = 318}, + [572] = {.lex_state = 339}, + [573] = {.lex_state = 392}, + [574] = {.lex_state = 344}, + [575] = {.lex_state = 330}, + [576] = {.lex_state = 330}, + [577] = {.lex_state = 330}, + [578] = {.lex_state = 330}, + [579] = {.lex_state = 330}, + [580] = {.lex_state = 330}, + [581] = {.lex_state = 330}, + [582] = {.lex_state = 330}, + [583] = {.lex_state = 330}, + [584] = {.lex_state = 330}, + [585] = {.lex_state = 330}, + [586] = {.lex_state = 330}, + [587] = {.lex_state = 344}, + [588] = {.lex_state = 326}, + [589] = {.lex_state = 318}, + [590] = {.lex_state = 376}, + [591] = {.lex_state = 341}, + [592] = {.lex_state = 376}, + [593] = {.lex_state = 376}, + [594] = {.lex_state = 376}, + [595] = {.lex_state = 376}, + [596] = {.lex_state = 376}, [597] = {.lex_state = 376}, - [598] = {.lex_state = 334}, + [598] = {.lex_state = 376}, [599] = {.lex_state = 376}, [600] = {.lex_state = 376}, [601] = {.lex_state = 376}, - [602] = {.lex_state = 376}, - [603] = {.lex_state = 376}, - [604] = {.lex_state = 376}, - [605] = {.lex_state = 376}, - [606] = {.lex_state = 376}, - [607] = {.lex_state = 376}, - [608] = {.lex_state = 267}, - [609] = {.lex_state = 398}, - [610] = {.lex_state = 274}, - [611] = {.lex_state = 267}, - [612] = {.lex_state = 287}, - [613] = {.lex_state = 287}, - [614] = {.lex_state = 287}, - [615] = {.lex_state = 351}, - [616] = {.lex_state = 344}, - [617] = {.lex_state = 295}, - [618] = {.lex_state = 376}, - [619] = {.lex_state = 287}, - [620] = {.lex_state = 319}, - [621] = {.lex_state = 351}, - [622] = {.lex_state = 344}, - [623] = {.lex_state = 399}, - [624] = {.lex_state = 274}, - [625] = {.lex_state = 390}, - [626] = {.lex_state = 347}, - [627] = {.lex_state = 379}, - [628] = {.lex_state = 392}, - [629] = {.lex_state = 380}, - [630] = {.lex_state = 400}, - [631] = {.lex_state = 401}, - [632] = {.lex_state = 357}, - [633] = {.lex_state = 324}, - [634] = {.lex_state = 310}, - [635] = {.lex_state = 384}, - [636] = {.lex_state = 334}, - [637] = {.lex_state = 384}, - [638] = {.lex_state = 384}, - [639] = {.lex_state = 384}, - [640] = {.lex_state = 384}, - [641] = {.lex_state = 384}, - [642] = {.lex_state = 384}, - [643] = {.lex_state = 384}, - [644] = {.lex_state = 384}, - [645] = {.lex_state = 384}, - [646] = {.lex_state = 319}, - [647] = {.lex_state = 274}, - [648] = {.lex_state = 297}, - [649] = {.lex_state = 314}, - [650] = {.lex_state = 379}, - [651] = {.lex_state = 393}, - [652] = {.lex_state = 353}, - [653] = {.lex_state = 356}, - [654] = {.lex_state = 384}, - [655] = {.lex_state = 319}, - [656] = {.lex_state = 324}, - [657] = {.lex_state = 384}, - [658] = {.lex_state = 249}, - [659] = {.lex_state = 395}, - [660] = {.lex_state = 396}, - [661] = {.lex_state = 274}, - [662] = {.lex_state = 274}, - [663] = {.lex_state = 274}, - [664] = {.lex_state = 274}, - [665] = {.lex_state = 274}, - [666] = {.lex_state = 274}, - [667] = {.lex_state = 274}, - [668] = {.lex_state = 274}, - [669] = {.lex_state = 274}, - [670] = {.lex_state = 274}, - [671] = {.lex_state = 274}, - [672] = {.lex_state = 274}, - [673] = {.lex_state = 387}, - [674] = {.lex_state = 297}, - [675] = {.lex_state = 357}, - [676] = {.lex_state = 396}, - [677] = {.lex_state = 376}, - [678] = {.lex_state = 376}, - [679] = {.lex_state = 335}, - [680] = {.lex_state = 377}, - [681] = {.lex_state = 376}, - [682] = {.lex_state = 295}, - [683] = {.lex_state = 344}, - [684] = {.lex_state = 336}, - [685] = {.lex_state = 287}, - [686] = {.lex_state = 287}, - [687] = {.lex_state = 287}, - [688] = {.lex_state = 351}, - [689] = {.lex_state = 344}, - [690] = {.lex_state = 295}, - [691] = {.lex_state = 285}, - [692] = {.lex_state = 285}, - [693] = {.lex_state = 274}, - [694] = {.lex_state = 286}, - [695] = {.lex_state = 285}, - [696] = {.lex_state = 285}, - [697] = {.lex_state = 336}, - [698] = {.lex_state = 402}, - [699] = {.lex_state = 287}, - [700] = {.lex_state = 319}, - [701] = {.lex_state = 351}, - [702] = {.lex_state = 344}, - [703] = {.lex_state = 312}, + [602] = {.lex_state = 344}, + [603] = {.lex_state = 392}, + [604] = {.lex_state = 392}, + [605] = {.lex_state = 377}, + [606] = {.lex_state = 391}, + [607] = {.lex_state = 392}, + [608] = {.lex_state = 352}, + [609] = {.lex_state = 371}, + [610] = {.lex_state = 330}, + [611] = {.lex_state = 386}, + [612] = {.lex_state = 371}, + [613] = {.lex_state = 352}, + [614] = {.lex_state = 395}, + [615] = {.lex_state = 330}, + [616] = {.lex_state = 354}, + [617] = {.lex_state = 329}, + [618] = {.lex_state = 354}, + [619] = {.lex_state = 330}, + [620] = {.lex_state = 396}, + [621] = {.lex_state = 330}, + [622] = {.lex_state = 387}, + [623] = {.lex_state = 354}, + [624] = {.lex_state = 370}, + [625] = {.lex_state = 315}, + [626] = {.lex_state = 387}, + [627] = {.lex_state = 397}, + [628] = {.lex_state = 330}, + [629] = {.lex_state = 398}, + [630] = {.lex_state = 330}, + [631] = {.lex_state = 332}, + [632] = {.lex_state = 286}, + [633] = {.lex_state = 335}, + [634] = {.lex_state = 399}, + [635] = {.lex_state = 330}, + [636] = {.lex_state = 330}, + [637] = {.lex_state = 330}, + [638] = {.lex_state = 376}, + [639] = {.lex_state = 377}, + [640] = {.lex_state = 330}, + [641] = {.lex_state = 385}, + [642] = {.lex_state = 344}, + [643] = {.lex_state = 392}, + [644] = {.lex_state = 392}, + [645] = {.lex_state = 377}, + [646] = {.lex_state = 391}, + [647] = {.lex_state = 392}, + [648] = {.lex_state = 352}, + [649] = {.lex_state = 371}, + [650] = {.lex_state = 378}, + [651] = {.lex_state = 363}, + [652] = {.lex_state = 363}, + [653] = {.lex_state = 326}, + [654] = {.lex_state = 318}, + [655] = {.lex_state = 342}, + [656] = {.lex_state = 342}, + [657] = {.lex_state = 330}, + [658] = {.lex_state = 343}, + [659] = {.lex_state = 342}, + [660] = {.lex_state = 342}, + [661] = {.lex_state = 378}, + [662] = {.lex_state = 400}, + [663] = {.lex_state = 392}, + [664] = {.lex_state = 376}, + [665] = {.lex_state = 392}, + [666] = {.lex_state = 392}, + [667] = {.lex_state = 392}, + [668] = {.lex_state = 392}, + [669] = {.lex_state = 392}, + [670] = {.lex_state = 392}, + [671] = {.lex_state = 392}, + [672] = {.lex_state = 392}, + [673] = {.lex_state = 392}, + [674] = {.lex_state = 341}, + [675] = {.lex_state = 401}, + [676] = {.lex_state = 330}, + [677] = {.lex_state = 341}, + [678] = {.lex_state = 344}, + [679] = {.lex_state = 344}, + [680] = {.lex_state = 344}, + [681] = {.lex_state = 386}, + [682] = {.lex_state = 371}, + [683] = {.lex_state = 352}, + [684] = {.lex_state = 392}, + [685] = {.lex_state = 344}, + [686] = {.lex_state = 374}, + [687] = {.lex_state = 386}, + [688] = {.lex_state = 371}, + [689] = {.lex_state = 374}, + [690] = {.lex_state = 330}, + [691] = {.lex_state = 354}, + [692] = {.lex_state = 364}, + [693] = {.lex_state = 367}, + [694] = {.lex_state = 326}, + [695] = {.lex_state = 370}, + [696] = {.lex_state = 371}, + [697] = {.lex_state = 374}, + [698] = {.lex_state = 392}, + [699] = {.lex_state = 392}, + [700] = {.lex_state = 377}, + [701] = {.lex_state = 391}, + [702] = {.lex_state = 392}, + [703] = {.lex_state = 352}, [704] = {.lex_state = 371}, - [705] = {.lex_state = 333}, + [705] = {.lex_state = 378}, [706] = {.lex_state = 344}, - [707] = {.lex_state = 274}, - [708] = {.lex_state = 375}, - [709] = {.lex_state = 384}, - [710] = {.lex_state = 374}, - [711] = {.lex_state = 403}, - [712] = {.lex_state = 274}, - [713] = {.lex_state = 274}, - [714] = {.lex_state = 334}, - [715] = {.lex_state = 335}, - [716] = {.lex_state = 274}, - [717] = {.lex_state = 343}, - [718] = {.lex_state = 287}, - [719] = {.lex_state = 287}, - [720] = {.lex_state = 274}, - [721] = {.lex_state = 334}, - [722] = {.lex_state = 285}, - [723] = {.lex_state = 285}, - [724] = {.lex_state = 274}, - [725] = {.lex_state = 286}, - [726] = {.lex_state = 285}, - [727] = {.lex_state = 285}, - [728] = {.lex_state = 336}, - [729] = {.lex_state = 404}, - [730] = {.lex_state = 287}, - [731] = {.lex_state = 319}, - [732] = {.lex_state = 351}, - [733] = {.lex_state = 344}, - [734] = {.lex_state = 267}, - [735] = {.lex_state = 267}, - [736] = {.lex_state = 287}, - [737] = {.lex_state = 379}, - [738] = {.lex_state = 319}, - [739] = {.lex_state = 351}, - [740] = {.lex_state = 344}, - [741] = {.lex_state = 379}, - [742] = {.lex_state = 409}, - [743] = {.lex_state = 274}, - [744] = {.lex_state = 319}, - [745] = {.lex_state = 379}, - [746] = {.lex_state = 356}, - [747] = {.lex_state = 357}, - [748] = {.lex_state = 396}, - [749] = {.lex_state = 324}, - [750] = {.lex_state = 395}, - [751] = {.lex_state = 334}, - [752] = {.lex_state = 395}, - [753] = {.lex_state = 395}, - [754] = {.lex_state = 395}, - [755] = {.lex_state = 395}, - [756] = {.lex_state = 395}, - [757] = {.lex_state = 395}, - [758] = {.lex_state = 395}, - [759] = {.lex_state = 395}, - [760] = {.lex_state = 395}, - [761] = {.lex_state = 297}, - [762] = {.lex_state = 395}, - [763] = {.lex_state = 371}, - [764] = {.lex_state = 396}, - [765] = {.lex_state = 287}, - [766] = {.lex_state = 287}, - [767] = {.lex_state = 287}, - [768] = {.lex_state = 351}, - [769] = {.lex_state = 344}, - [770] = {.lex_state = 295}, - [771] = {.lex_state = 285}, - [772] = {.lex_state = 285}, - [773] = {.lex_state = 274}, - [774] = {.lex_state = 286}, - [775] = {.lex_state = 285}, - [776] = {.lex_state = 285}, - [777] = {.lex_state = 336}, - [778] = {.lex_state = 410}, - [779] = {.lex_state = 287}, - [780] = {.lex_state = 319}, - [781] = {.lex_state = 351}, - [782] = {.lex_state = 344}, - [783] = {.lex_state = 274}, - [784] = {.lex_state = 274}, - [785] = {.lex_state = 334}, - [786] = {.lex_state = 335}, - [787] = {.lex_state = 274}, - [788] = {.lex_state = 343}, - [789] = {.lex_state = 287}, - [790] = {.lex_state = 287}, - [791] = {.lex_state = 287}, - [792] = {.lex_state = 379}, - [793] = {.lex_state = 319}, - [794] = {.lex_state = 351}, - [795] = {.lex_state = 333}, - [796] = {.lex_state = 344}, - [797] = {.lex_state = 375}, - [798] = {.lex_state = 376}, - [799] = {.lex_state = 376}, - [800] = {.lex_state = 335}, - [801] = {.lex_state = 377}, - [802] = {.lex_state = 376}, - [803] = {.lex_state = 295}, - [804] = {.lex_state = 344}, - [805] = {.lex_state = 267}, - [806] = {.lex_state = 376}, - [807] = {.lex_state = 274}, - [808] = {.lex_state = 274}, - [809] = {.lex_state = 334}, - [810] = {.lex_state = 335}, - [811] = {.lex_state = 274}, - [812] = {.lex_state = 343}, - [813] = {.lex_state = 287}, - [814] = {.lex_state = 287}, - [815] = {.lex_state = 287}, - [816] = {.lex_state = 379}, - [817] = {.lex_state = 319}, - [818] = {.lex_state = 351}, - [819] = {.lex_state = 267}, - [820] = {.lex_state = 287}, - [821] = {.lex_state = 379}, - [822] = {.lex_state = 319}, - [823] = {.lex_state = 384}, - [824] = {.lex_state = 411}, - [825] = {.lex_state = 274}, - [826] = {.lex_state = 357}, - [827] = {.lex_state = 285}, - [828] = {.lex_state = 285}, - [829] = {.lex_state = 274}, - [830] = {.lex_state = 286}, - [831] = {.lex_state = 285}, - [832] = {.lex_state = 285}, - [833] = {.lex_state = 336}, - [834] = {.lex_state = 412}, - [835] = {.lex_state = 287}, - [836] = {.lex_state = 319}, - [837] = {.lex_state = 351}, + [707] = {.lex_state = 344}, + [708] = {.lex_state = 344}, + [709] = {.lex_state = 386}, + [710] = {.lex_state = 371}, + [711] = {.lex_state = 352}, + [712] = {.lex_state = 402}, + [713] = {.lex_state = 330}, + [714] = {.lex_state = 330}, + [715] = {.lex_state = 376}, + [716] = {.lex_state = 377}, + [717] = {.lex_state = 330}, + [718] = {.lex_state = 385}, + [719] = {.lex_state = 344}, + [720] = {.lex_state = 344}, + [721] = {.lex_state = 330}, + [722] = {.lex_state = 376}, + [723] = {.lex_state = 342}, + [724] = {.lex_state = 342}, + [725] = {.lex_state = 330}, + [726] = {.lex_state = 343}, + [727] = {.lex_state = 342}, + [728] = {.lex_state = 342}, + [729] = {.lex_state = 378}, + [730] = {.lex_state = 403}, + [731] = {.lex_state = 344}, + [732] = {.lex_state = 374}, + [733] = {.lex_state = 386}, + [734] = {.lex_state = 371}, + [735] = {.lex_state = 341}, + [736] = {.lex_state = 341}, + [737] = {.lex_state = 344}, + [738] = {.lex_state = 329}, + [739] = {.lex_state = 374}, + [740] = {.lex_state = 386}, + [741] = {.lex_state = 374}, + [742] = {.lex_state = 370}, + [743] = {.lex_state = 315}, + [744] = {.lex_state = 344}, + [745] = {.lex_state = 344}, + [746] = {.lex_state = 344}, + [747] = {.lex_state = 386}, + [748] = {.lex_state = 371}, + [749] = {.lex_state = 352}, + [750] = {.lex_state = 342}, + [751] = {.lex_state = 342}, + [752] = {.lex_state = 330}, + [753] = {.lex_state = 343}, + [754] = {.lex_state = 342}, + [755] = {.lex_state = 342}, + [756] = {.lex_state = 378}, + [757] = {.lex_state = 408}, + [758] = {.lex_state = 344}, + [759] = {.lex_state = 374}, + [760] = {.lex_state = 386}, + [761] = {.lex_state = 371}, + [762] = {.lex_state = 392}, + [763] = {.lex_state = 392}, + [764] = {.lex_state = 377}, + [765] = {.lex_state = 391}, + [766] = {.lex_state = 392}, + [767] = {.lex_state = 352}, + [768] = {.lex_state = 371}, + [769] = {.lex_state = 341}, + [770] = {.lex_state = 392}, + [771] = {.lex_state = 330}, + [772] = {.lex_state = 330}, + [773] = {.lex_state = 376}, + [774] = {.lex_state = 377}, + [775] = {.lex_state = 330}, + [776] = {.lex_state = 385}, + [777] = {.lex_state = 344}, + [778] = {.lex_state = 344}, + [779] = {.lex_state = 344}, + [780] = {.lex_state = 329}, + [781] = {.lex_state = 374}, + [782] = {.lex_state = 386}, + [783] = {.lex_state = 341}, + [784] = {.lex_state = 344}, + [785] = {.lex_state = 329}, + [786] = {.lex_state = 374}, + [787] = {.lex_state = 342}, + [788] = {.lex_state = 342}, + [789] = {.lex_state = 330}, + [790] = {.lex_state = 343}, + [791] = {.lex_state = 342}, + [792] = {.lex_state = 342}, + [793] = {.lex_state = 378}, + [794] = {.lex_state = 409}, + [795] = {.lex_state = 344}, + [796] = {.lex_state = 374}, + [797] = {.lex_state = 386}, + [798] = {.lex_state = 371}, + [799] = {.lex_state = 330}, + [800] = {.lex_state = 330}, + [801] = {.lex_state = 376}, + [802] = {.lex_state = 377}, + [803] = {.lex_state = 330}, + [804] = {.lex_state = 385}, + [805] = {.lex_state = 344}, + [806] = {.lex_state = 344}, + [807] = {.lex_state = 344}, + [808] = {.lex_state = 329}, + [809] = {.lex_state = 374}, + [810] = {.lex_state = 386}, + [811] = {.lex_state = 344}, + [812] = {.lex_state = 344}, + [813] = {.lex_state = 344}, + [814] = {.lex_state = 386}, + [815] = {.lex_state = 371}, + [816] = {.lex_state = 352}, + [817] = {.lex_state = 392}, + [818] = {.lex_state = 392}, + [819] = {.lex_state = 377}, + [820] = {.lex_state = 391}, + [821] = {.lex_state = 392}, + [822] = {.lex_state = 352}, + [823] = {.lex_state = 371}, + [824] = {.lex_state = 344}, + [825] = {.lex_state = 329}, + [826] = {.lex_state = 374}, + [827] = {.lex_state = 341}, + [828] = {.lex_state = 344}, + [829] = {.lex_state = 329}, + [830] = {.lex_state = 330}, + [831] = {.lex_state = 330}, + [832] = {.lex_state = 376}, + [833] = {.lex_state = 377}, + [834] = {.lex_state = 330}, + [835] = {.lex_state = 385}, + [836] = {.lex_state = 344}, + [837] = {.lex_state = 344}, [838] = {.lex_state = 344}, - [839] = {.lex_state = 274}, - [840] = {.lex_state = 274}, - [841] = {.lex_state = 334}, - [842] = {.lex_state = 335}, - [843] = {.lex_state = 274}, - [844] = {.lex_state = 343}, - [845] = {.lex_state = 287}, - [846] = {.lex_state = 287}, - [847] = {.lex_state = 287}, - [848] = {.lex_state = 379}, - [849] = {.lex_state = 319}, - [850] = {.lex_state = 351}, - [851] = {.lex_state = 376}, - [852] = {.lex_state = 376}, - [853] = {.lex_state = 335}, - [854] = {.lex_state = 377}, - [855] = {.lex_state = 376}, - [856] = {.lex_state = 295}, + [839] = {.lex_state = 329}, + [840] = {.lex_state = 374}, + [841] = {.lex_state = 386}, + [842] = {.lex_state = 392}, + [843] = {.lex_state = 392}, + [844] = {.lex_state = 377}, + [845] = {.lex_state = 391}, + [846] = {.lex_state = 392}, + [847] = {.lex_state = 352}, + [848] = {.lex_state = 371}, + [849] = {.lex_state = 344}, + [850] = {.lex_state = 329}, + [851] = {.lex_state = 374}, + [852] = {.lex_state = 400}, + [853] = {.lex_state = 344}, + [854] = {.lex_state = 374}, + [855] = {.lex_state = 386}, + [856] = {.lex_state = 371}, [857] = {.lex_state = 344}, - [858] = {.lex_state = 287}, - [859] = {.lex_state = 379}, - [860] = {.lex_state = 319}, - [861] = {.lex_state = 333}, - [862] = {.lex_state = 287}, - [863] = {.lex_state = 287}, - [864] = {.lex_state = 287}, - [865] = {.lex_state = 351}, + [858] = {.lex_state = 344}, + [859] = {.lex_state = 344}, + [860] = {.lex_state = 386}, + [861] = {.lex_state = 371}, + [862] = {.lex_state = 352}, + [863] = {.lex_state = 344}, + [864] = {.lex_state = 329}, + [865] = {.lex_state = 341}, [866] = {.lex_state = 344}, - [867] = {.lex_state = 295}, - [868] = {.lex_state = 376}, - [869] = {.lex_state = 376}, - [870] = {.lex_state = 335}, - [871] = {.lex_state = 377}, - [872] = {.lex_state = 376}, - [873] = {.lex_state = 295}, + [867] = {.lex_state = 392}, + [868] = {.lex_state = 392}, + [869] = {.lex_state = 377}, + [870] = {.lex_state = 391}, + [871] = {.lex_state = 392}, + [872] = {.lex_state = 352}, + [873] = {.lex_state = 371}, [874] = {.lex_state = 344}, - [875] = {.lex_state = 287}, - [876] = {.lex_state = 379}, - [877] = {.lex_state = 319}, - [878] = {.lex_state = 267}, - [879] = {.lex_state = 287}, - [880] = {.lex_state = 379}, - [881] = {.lex_state = 395}, - [882] = {.lex_state = 395}, - [883] = {.lex_state = 371}, - [884] = {.lex_state = 274}, - [885] = {.lex_state = 274}, - [886] = {.lex_state = 334}, - [887] = {.lex_state = 335}, - [888] = {.lex_state = 274}, - [889] = {.lex_state = 343}, - [890] = {.lex_state = 287}, - [891] = {.lex_state = 287}, - [892] = {.lex_state = 287}, - [893] = {.lex_state = 379}, - [894] = {.lex_state = 319}, - [895] = {.lex_state = 351}, - [896] = {.lex_state = 376}, - [897] = {.lex_state = 376}, - [898] = {.lex_state = 335}, - [899] = {.lex_state = 377}, - [900] = {.lex_state = 376}, - [901] = {.lex_state = 295}, - [902] = {.lex_state = 344}, - [903] = {.lex_state = 287}, - [904] = {.lex_state = 379}, - [905] = {.lex_state = 319}, - [906] = {.lex_state = 287}, - [907] = {.lex_state = 287}, - [908] = {.lex_state = 287}, - [909] = {.lex_state = 351}, + [875] = {.lex_state = 329}, + [876] = {.lex_state = 374}, + [877] = {.lex_state = 344}, + [878] = {.lex_state = 344}, + [879] = {.lex_state = 344}, + [880] = {.lex_state = 386}, + [881] = {.lex_state = 371}, + [882] = {.lex_state = 352}, + [883] = {.lex_state = 344}, + [884] = {.lex_state = 329}, + [885] = {.lex_state = 344}, + [886] = {.lex_state = 344}, + [887] = {.lex_state = 329}, + [888] = {.lex_state = 374}, + [889] = {.lex_state = 386}, + [890] = {.lex_state = 403}, + [891] = {.lex_state = 344}, + [892] = {.lex_state = 374}, + [893] = {.lex_state = 386}, + [894] = {.lex_state = 371}, + [895] = {.lex_state = 344}, + [896] = {.lex_state = 341}, + [897] = {.lex_state = 344}, + [898] = {.lex_state = 344}, + [899] = {.lex_state = 344}, + [900] = {.lex_state = 386}, + [901] = {.lex_state = 371}, + [902] = {.lex_state = 352}, + [903] = {.lex_state = 344}, + [904] = {.lex_state = 329}, + [905] = {.lex_state = 408}, + [906] = {.lex_state = 344}, + [907] = {.lex_state = 374}, + [908] = {.lex_state = 386}, + [909] = {.lex_state = 371}, [910] = {.lex_state = 344}, - [911] = {.lex_state = 295}, - [912] = {.lex_state = 287}, - [913] = {.lex_state = 379}, - [914] = {.lex_state = 397}, - [915] = {.lex_state = 287}, - [916] = {.lex_state = 319}, - [917] = {.lex_state = 351}, - [918] = {.lex_state = 344}, - [919] = {.lex_state = 287}, - [920] = {.lex_state = 287}, - [921] = {.lex_state = 287}, - [922] = {.lex_state = 351}, - [923] = {.lex_state = 344}, - [924] = {.lex_state = 295}, - [925] = {.lex_state = 287}, - [926] = {.lex_state = 379}, - [927] = {.lex_state = 267}, - [928] = {.lex_state = 287}, - [929] = {.lex_state = 376}, - [930] = {.lex_state = 376}, - [931] = {.lex_state = 335}, - [932] = {.lex_state = 377}, - [933] = {.lex_state = 376}, - [934] = {.lex_state = 295}, + [911] = {.lex_state = 344}, + [912] = {.lex_state = 329}, + [913] = {.lex_state = 374}, + [914] = {.lex_state = 344}, + [915] = {.lex_state = 344}, + [916] = {.lex_state = 329}, + [917] = {.lex_state = 374}, + [918] = {.lex_state = 386}, + [919] = {.lex_state = 409}, + [920] = {.lex_state = 344}, + [921] = {.lex_state = 374}, + [922] = {.lex_state = 386}, + [923] = {.lex_state = 371}, + [924] = {.lex_state = 344}, + [925] = {.lex_state = 344}, + [926] = {.lex_state = 344}, + [927] = {.lex_state = 329}, + [928] = {.lex_state = 374}, + [929] = {.lex_state = 386}, + [930] = {.lex_state = 344}, + [931] = {.lex_state = 329}, + [932] = {.lex_state = 344}, + [933] = {.lex_state = 329}, + [934] = {.lex_state = 374}, [935] = {.lex_state = 344}, - [936] = {.lex_state = 287}, - [937] = {.lex_state = 379}, - [938] = {.lex_state = 319}, - [939] = {.lex_state = 287}, - [940] = {.lex_state = 287}, - [941] = {.lex_state = 287}, - [942] = {.lex_state = 351}, + [936] = {.lex_state = 344}, + [937] = {.lex_state = 329}, + [938] = {.lex_state = 374}, + [939] = {.lex_state = 386}, + [940] = {.lex_state = 344}, + [941] = {.lex_state = 329}, + [942] = {.lex_state = 374}, [943] = {.lex_state = 344}, - [944] = {.lex_state = 295}, - [945] = {.lex_state = 287}, - [946] = {.lex_state = 379}, - [947] = {.lex_state = 402}, - [948] = {.lex_state = 287}, - [949] = {.lex_state = 319}, - [950] = {.lex_state = 351}, + [944] = {.lex_state = 344}, + [945] = {.lex_state = 329}, + [946] = {.lex_state = 344}, + [947] = {.lex_state = 329}, + [948] = {.lex_state = 374}, + [949] = {.lex_state = 344}, + [950] = {.lex_state = 329}, [951] = {.lex_state = 344}, - [952] = {.lex_state = 287}, - [953] = {.lex_state = 287}, - [954] = {.lex_state = 287}, - [955] = {.lex_state = 379}, - [956] = {.lex_state = 319}, - [957] = {.lex_state = 351}, - [958] = {.lex_state = 404}, - [959] = {.lex_state = 287}, - [960] = {.lex_state = 319}, - [961] = {.lex_state = 351}, - [962] = {.lex_state = 344}, - [963] = {.lex_state = 287}, - [964] = {.lex_state = 267}, - [965] = {.lex_state = 287}, - [966] = {.lex_state = 287}, - [967] = {.lex_state = 287}, - [968] = {.lex_state = 351}, - [969] = {.lex_state = 344}, - [970] = {.lex_state = 295}, - [971] = {.lex_state = 287}, - [972] = {.lex_state = 379}, - [973] = {.lex_state = 410}, - [974] = {.lex_state = 287}, - [975] = {.lex_state = 319}, - [976] = {.lex_state = 351}, - [977] = {.lex_state = 344}, - [978] = {.lex_state = 287}, - [979] = {.lex_state = 287}, - [980] = {.lex_state = 287}, - [981] = {.lex_state = 379}, - [982] = {.lex_state = 319}, - [983] = {.lex_state = 351}, - [984] = {.lex_state = 287}, - [985] = {.lex_state = 379}, - [986] = {.lex_state = 319}, - [987] = {.lex_state = 287}, - [988] = {.lex_state = 287}, - [989] = {.lex_state = 379}, - [990] = {.lex_state = 319}, - [991] = {.lex_state = 351}, - [992] = {.lex_state = 412}, - [993] = {.lex_state = 287}, - [994] = {.lex_state = 319}, - [995] = {.lex_state = 351}, - [996] = {.lex_state = 344}, - [997] = {.lex_state = 287}, - [998] = {.lex_state = 287}, - [999] = {.lex_state = 287}, - [1000] = {.lex_state = 379}, - [1001] = {.lex_state = 319}, - [1002] = {.lex_state = 351}, - [1003] = {.lex_state = 287}, - [1004] = {.lex_state = 379}, - [1005] = {.lex_state = 319}, - [1006] = {.lex_state = 287}, - [1007] = {.lex_state = 379}, - [1008] = {.lex_state = 287}, - [1009] = {.lex_state = 379}, - [1010] = {.lex_state = 319}, - [1011] = {.lex_state = 287}, - [1012] = {.lex_state = 287}, - [1013] = {.lex_state = 379}, - [1014] = {.lex_state = 319}, - [1015] = {.lex_state = 351}, - [1016] = {.lex_state = 287}, - [1017] = {.lex_state = 379}, - [1018] = {.lex_state = 319}, - [1019] = {.lex_state = 287}, - [1020] = {.lex_state = 379}, - [1021] = {.lex_state = 287}, - [1022] = {.lex_state = 287}, - [1023] = {.lex_state = 379}, - [1024] = {.lex_state = 287}, - [1025] = {.lex_state = 379}, - [1026] = {.lex_state = 319}, - [1027] = {.lex_state = 287}, - [1028] = {.lex_state = 379}, - [1029] = {.lex_state = 287}, - [1030] = {.lex_state = 287}, - [1031] = {.lex_state = 287}, - [1032] = {.lex_state = 379}, - [1033] = {.lex_state = 287}, - [1034] = {.lex_state = 287}, - [1035] = {.lex_state = 413}, - [1036] = {.lex_state = 379}, - [1037] = {.lex_state = 414}, - [1038] = {.lex_state = 415}, - [1039] = {.lex_state = 307}, - [1040] = {.lex_state = 613}, - [1041] = {.lex_state = 276}, - [1042] = {.lex_state = 614}, - [1043] = {.lex_state = 615}, - [1044] = {.lex_state = 616}, - [1045] = {.lex_state = 350}, - [1046] = {.lex_state = 617}, - [1047] = {.lex_state = 357}, - [1048] = {.lex_state = 276}, - [1049] = {.lex_state = 278}, - [1050] = {.lex_state = 335}, - [1051] = {.lex_state = 285}, - [1052] = {.lex_state = 287}, - [1053] = {.lex_state = 285}, - [1054] = {.lex_state = 274}, - [1055] = {.lex_state = 286}, - [1056] = {.lex_state = 285}, - [1057] = {.lex_state = 285}, - [1058] = {.lex_state = 274}, - [1059] = {.lex_state = 274}, - [1060] = {.lex_state = 274}, - [1061] = {.lex_state = 274}, - [1062] = {.lex_state = 274}, - [1063] = {.lex_state = 274}, - [1064] = {.lex_state = 274}, - [1065] = {.lex_state = 274}, - [1066] = {.lex_state = 274}, - [1067] = {.lex_state = 274}, - [1068] = {.lex_state = 274}, - [1069] = {.lex_state = 274}, - [1070] = {.lex_state = 618}, - [1071] = {.lex_state = 274}, - [1072] = {.lex_state = 248}, - [1073] = {.lex_state = 619}, - [1074] = {.lex_state = 620}, - [1075] = {.lex_state = 307}, - [1076] = {.lex_state = 361}, - [1077] = {.lex_state = 307}, - [1078] = {.lex_state = 267}, - [1079] = {.lex_state = 622}, - [1080] = {.lex_state = 310}, - [1081] = {.lex_state = 375}, - [1082] = {.lex_state = 356}, - [1083] = {.lex_state = 347}, - [1084] = {.lex_state = 267}, - [1085] = {.lex_state = 276}, - [1086] = {.lex_state = 312}, - [1087] = {.lex_state = 312}, - [1088] = {.lex_state = 312}, - [1089] = {.lex_state = 333}, - [1090] = {.lex_state = 371}, - [1091] = {.lex_state = 380}, - [1092] = {.lex_state = 379}, - [1093] = {.lex_state = 267}, - [1094] = {.lex_state = 297}, - [1095] = {.lex_state = 385}, - [1096] = {.lex_state = 324}, - [1097] = {.lex_state = 297}, - [1098] = {.lex_state = 396}, - [1099] = {.lex_state = 307}, - [1100] = {.lex_state = 276}, - [1101] = {.lex_state = 389}, - [1102] = {.lex_state = 379}, - [1103] = {.lex_state = 396}, - [1104] = {.lex_state = 623}, - [1105] = {.lex_state = 379}, - [1106] = {.lex_state = 624}, - [1107] = {.lex_state = 295}, - [1108] = {.lex_state = 627}, - [1109] = {.lex_state = 274}, - [1110] = {.lex_state = 274}, - [1111] = {.lex_state = 274}, - [1112] = {.lex_state = 274}, - [1113] = {.lex_state = 274}, - [1114] = {.lex_state = 628}, - [1115] = {.lex_state = 381}, - [1116] = {.lex_state = 315}, - [1117] = {.lex_state = 401}, - [1118] = {.lex_state = 629}, - [1119] = {.lex_state = 392}, - [1120] = {.lex_state = 630}, - [1121] = {.lex_state = 249}, - [1122] = {.lex_state = 379}, - [1123] = {.lex_state = 632}, - [1124] = {.lex_state = 274}, - [1125] = {.lex_state = 274}, - [1126] = {.lex_state = 274}, - [1127] = {.lex_state = 274}, - [1128] = {.lex_state = 274}, - [1129] = {.lex_state = 274}, - [1130] = {.lex_state = 633}, - [1131] = {.lex_state = 390}, - [1132] = {.lex_state = 374}, - [1133] = {.lex_state = 347}, - [1134] = {.lex_state = 371}, - [1135] = {.lex_state = 379}, - [1136] = {.lex_state = 634}, - [1137] = {.lex_state = 249}, - [1138] = {.lex_state = 635}, - [1139] = {.lex_state = 274}, - [1140] = {.lex_state = 285}, - [1141] = {.lex_state = 274}, - [1142] = {.lex_state = 297}, - [1143] = {.lex_state = 267}, - [1144] = {.lex_state = 297}, - [1145] = {.lex_state = 249}, - [1146] = {.lex_state = 287}, - [1147] = {.lex_state = 351}, - [1148] = {.lex_state = 629}, - [1149] = {.lex_state = 249}, - [1150] = {.lex_state = 636}, - [1151] = {.lex_state = 635}, - [1152] = {.lex_state = 615}, - [1153] = {.lex_state = 274}, - [1154] = {.lex_state = 274}, - [1155] = {.lex_state = 274}, - [1156] = {.lex_state = 274}, - [1157] = {.lex_state = 274}, - [1158] = {.lex_state = 274}, - [1159] = {.lex_state = 329}, - [1160] = {.lex_state = 373}, - [1161] = {.lex_state = 637}, - [1162] = {.lex_state = 273}, - [1163] = {.lex_state = 623}, - [1164] = {.lex_state = 616}, - [1165] = {.lex_state = 617}, - [1166] = {.lex_state = 310}, - [1167] = {.lex_state = 375}, - [1168] = {.lex_state = 297}, - [1169] = {.lex_state = 380}, - [1170] = {.lex_state = 383}, - [1171] = {.lex_state = 384}, - [1172] = {.lex_state = 297}, - [1173] = {.lex_state = 638}, - [1174] = {.lex_state = 639}, - [1175] = {.lex_state = 267}, - [1176] = {.lex_state = 267}, - [1177] = {.lex_state = 297}, - [1178] = {.lex_state = 274}, - [1179] = {.lex_state = 336}, - [1180] = {.lex_state = 274}, - [1181] = {.lex_state = 334}, - [1182] = {.lex_state = 335}, - [1183] = {.lex_state = 274}, - [1184] = {.lex_state = 343}, - [1185] = {.lex_state = 334}, - [1186] = {.lex_state = 297}, - [1187] = {.lex_state = 297}, - [1188] = {.lex_state = 297}, - [1189] = {.lex_state = 297}, - [1190] = {.lex_state = 297}, - [1191] = {.lex_state = 297}, - [1192] = {.lex_state = 297}, - [1193] = {.lex_state = 297}, - [1194] = {.lex_state = 297}, - [1195] = {.lex_state = 297}, - [1196] = {.lex_state = 297}, - [1197] = {.lex_state = 297}, - [1198] = {.lex_state = 249}, - [1199] = {.lex_state = 297}, - [1200] = {.lex_state = 297}, - [1201] = {.lex_state = 640}, - [1202] = {.lex_state = 267}, - [1203] = {.lex_state = 641}, - [1204] = {.lex_state = 287}, - [1205] = {.lex_state = 312}, - [1206] = {.lex_state = 307}, - [1207] = {.lex_state = 351}, - [1208] = {.lex_state = 344}, - [1209] = {.lex_state = 623}, - [1210] = {.lex_state = 642}, - [1211] = {.lex_state = 616}, - [1212] = {.lex_state = 380}, - [1213] = {.lex_state = 643}, - [1214] = {.lex_state = 310}, - [1215] = {.lex_state = 384}, - [1216] = {.lex_state = 307}, - [1217] = {.lex_state = 333}, - [1218] = {.lex_state = 274}, - [1219] = {.lex_state = 320}, - [1220] = {.lex_state = 312}, - [1221] = {.lex_state = 274}, - [1222] = {.lex_state = 615}, - [1223] = {.lex_state = 613}, - [1224] = {.lex_state = 617}, - [1225] = {.lex_state = 335}, - [1226] = {.lex_state = 274}, - [1227] = {.lex_state = 644}, - [1228] = {.lex_state = 307}, - [1229] = {.lex_state = 267}, - [1230] = {.lex_state = 285}, - [1231] = {.lex_state = 285}, - [1232] = {.lex_state = 274}, - [1233] = {.lex_state = 286}, - [1234] = {.lex_state = 285}, - [1235] = {.lex_state = 285}, - [1236] = {.lex_state = 304}, - [1237] = {.lex_state = 361}, - [1238] = {.lex_state = 333}, - [1239] = {.lex_state = 274}, - [1240] = {.lex_state = 645}, - [1241] = {.lex_state = 357}, - [1242] = {.lex_state = 623}, - [1243] = {.lex_state = 627}, - [1244] = {.lex_state = 646}, - [1245] = {.lex_state = 324}, - [1246] = {.lex_state = 629}, - [1247] = {.lex_state = 629}, - [1248] = {.lex_state = 629}, - [1249] = {.lex_state = 629}, - [1250] = {.lex_state = 629}, - [1251] = {.lex_state = 249}, - [1252] = {.lex_state = 629}, - [1253] = {.lex_state = 381}, - [1254] = {.lex_state = 647}, - [1255] = {.lex_state = 274}, - [1256] = {.lex_state = 615}, - [1257] = {.lex_state = 295}, - [1258] = {.lex_state = 274}, - [1259] = {.lex_state = 274}, - [1260] = {.lex_state = 274}, - [1261] = {.lex_state = 274}, - [1262] = {.lex_state = 274}, - [1263] = {.lex_state = 274}, - [1264] = {.lex_state = 274}, - [1265] = {.lex_state = 274}, - [1266] = {.lex_state = 379}, - [1267] = {.lex_state = 401}, - [1268] = {.lex_state = 249}, - [1269] = {.lex_state = 274}, - [1270] = {.lex_state = 319}, - [1271] = {.lex_state = 324}, - [1272] = {.lex_state = 648}, - [1273] = {.lex_state = 634}, - [1274] = {.lex_state = 249}, - [1275] = {.lex_state = 634}, - [1276] = {.lex_state = 634}, - [1277] = {.lex_state = 634}, - [1278] = {.lex_state = 249}, - [1279] = {.lex_state = 634}, - [1280] = {.lex_state = 274}, - [1281] = {.lex_state = 274}, - [1282] = {.lex_state = 274}, - [1283] = {.lex_state = 274}, - [1284] = {.lex_state = 274}, - [1285] = {.lex_state = 274}, - [1286] = {.lex_state = 274}, - [1287] = {.lex_state = 274}, - [1288] = {.lex_state = 274}, - [1289] = {.lex_state = 324}, - [1290] = {.lex_state = 249}, - [1291] = {.lex_state = 615}, - [1292] = {.lex_state = 274}, - [1293] = {.lex_state = 297}, - [1294] = {.lex_state = 274}, - [1295] = {.lex_state = 267}, - [1296] = {.lex_state = 287}, - [1297] = {.lex_state = 319}, - [1298] = {.lex_state = 287}, - [1299] = {.lex_state = 351}, - [1300] = {.lex_state = 379}, - [1301] = {.lex_state = 324}, - [1302] = {.lex_state = 649}, - [1303] = {.lex_state = 650}, - [1304] = {.lex_state = 637}, - [1305] = {.lex_state = 249}, - [1306] = {.lex_state = 637}, - [1307] = {.lex_state = 637}, - [1308] = {.lex_state = 637}, - [1309] = {.lex_state = 249}, - [1310] = {.lex_state = 637}, - [1311] = {.lex_state = 345}, - [1312] = {.lex_state = 345}, - [1313] = {.lex_state = 651}, - [1314] = {.lex_state = 274}, - [1315] = {.lex_state = 274}, - [1316] = {.lex_state = 274}, - [1317] = {.lex_state = 274}, - [1318] = {.lex_state = 274}, - [1319] = {.lex_state = 274}, - [1320] = {.lex_state = 274}, - [1321] = {.lex_state = 274}, - [1322] = {.lex_state = 617}, - [1323] = {.lex_state = 652}, - [1324] = {.lex_state = 376}, - [1325] = {.lex_state = 376}, - [1326] = {.lex_state = 335}, - [1327] = {.lex_state = 377}, - [1328] = {.lex_state = 376}, - [1329] = {.lex_state = 344}, - [1330] = {.lex_state = 274}, - [1331] = {.lex_state = 324}, - [1332] = {.lex_state = 319}, - [1333] = {.lex_state = 324}, - [1334] = {.lex_state = 249}, - [1335] = {.lex_state = 653}, - [1336] = {.lex_state = 274}, - [1337] = {.lex_state = 329}, - [1338] = {.lex_state = 287}, - [1339] = {.lex_state = 319}, - [1340] = {.lex_state = 351}, - [1341] = {.lex_state = 380}, - [1342] = {.lex_state = 344}, - [1343] = {.lex_state = 629}, - [1344] = {.lex_state = 267}, - [1345] = {.lex_state = 287}, - [1346] = {.lex_state = 629}, - [1347] = {.lex_state = 297}, - [1348] = {.lex_state = 297}, - [1349] = {.lex_state = 297}, - [1350] = {.lex_state = 274}, - [1351] = {.lex_state = 274}, - [1352] = {.lex_state = 334}, - [1353] = {.lex_state = 335}, - [1354] = {.lex_state = 274}, - [1355] = {.lex_state = 343}, - [1356] = {.lex_state = 287}, - [1357] = {.lex_state = 307}, - [1358] = {.lex_state = 344}, - [1359] = {.lex_state = 267}, - [1360] = {.lex_state = 395}, - [1361] = {.lex_state = 371}, - [1362] = {.lex_state = 357}, - [1363] = {.lex_state = 324}, - [1364] = {.lex_state = 319}, - [1365] = {.lex_state = 267}, - [1366] = {.lex_state = 344}, - [1367] = {.lex_state = 629}, - [1368] = {.lex_state = 629}, - [1369] = {.lex_state = 334}, - [1370] = {.lex_state = 629}, - [1371] = {.lex_state = 629}, - [1372] = {.lex_state = 629}, - [1373] = {.lex_state = 629}, - [1374] = {.lex_state = 629}, - [1375] = {.lex_state = 357}, - [1376] = {.lex_state = 324}, - [1377] = {.lex_state = 629}, - [1378] = {.lex_state = 634}, - [1379] = {.lex_state = 634}, - [1380] = {.lex_state = 334}, - [1381] = {.lex_state = 634}, - [1382] = {.lex_state = 634}, - [1383] = {.lex_state = 634}, - [1384] = {.lex_state = 634}, - [1385] = {.lex_state = 634}, - [1386] = {.lex_state = 357}, - [1387] = {.lex_state = 376}, - [1388] = {.lex_state = 267}, - [1389] = {.lex_state = 379}, - [1390] = {.lex_state = 267}, - [1391] = {.lex_state = 319}, - [1392] = {.lex_state = 287}, - [1393] = {.lex_state = 357}, - [1394] = {.lex_state = 324}, - [1395] = {.lex_state = 345}, - [1396] = {.lex_state = 320}, - [1397] = {.lex_state = 637}, - [1398] = {.lex_state = 637}, - [1399] = {.lex_state = 334}, - [1400] = {.lex_state = 637}, - [1401] = {.lex_state = 637}, - [1402] = {.lex_state = 637}, - [1403] = {.lex_state = 637}, - [1404] = {.lex_state = 637}, - [1405] = {.lex_state = 287}, - [1406] = {.lex_state = 287}, - [1407] = {.lex_state = 267}, - [1408] = {.lex_state = 297}, - [1409] = {.lex_state = 654}, - [1410] = {.lex_state = 332}, - [1411] = {.lex_state = 287}, - [1412] = {.lex_state = 379}, - [1413] = {.lex_state = 319}, - [1414] = {.lex_state = 333}, - [1415] = {.lex_state = 267}, - [1416] = {.lex_state = 287}, - [1417] = {.lex_state = 351}, - [1418] = {.lex_state = 379}, - [1419] = {.lex_state = 376}, - [1420] = {.lex_state = 376}, - [1421] = {.lex_state = 335}, - [1422] = {.lex_state = 377}, - [1423] = {.lex_state = 376}, - [1424] = {.lex_state = 295}, - [1425] = {.lex_state = 344}, - [1426] = {.lex_state = 336}, - [1427] = {.lex_state = 333}, - [1428] = {.lex_state = 629}, - [1429] = {.lex_state = 655}, - [1430] = {.lex_state = 274}, - [1431] = {.lex_state = 634}, - [1432] = {.lex_state = 656}, - [1433] = {.lex_state = 274}, - [1434] = {.lex_state = 287}, - [1435] = {.lex_state = 637}, - [1436] = {.lex_state = 657}, - [1437] = {.lex_state = 274}, - [1438] = {.lex_state = 267}, - [1439] = {.lex_state = 287}, - [1440] = {.lex_state = 379}, - [1441] = {.lex_state = 267}, - [1442] = {.lex_state = 319}, - [1443] = {.lex_state = 287}, - [1444] = {.lex_state = 287}, - [1445] = {.lex_state = 287}, - [1446] = {.lex_state = 287}, - [1447] = {.lex_state = 351}, - [1448] = {.lex_state = 344}, - [1449] = {.lex_state = 295}, - [1450] = {.lex_state = 629}, - [1451] = {.lex_state = 634}, - [1452] = {.lex_state = 637}, - [1453] = {.lex_state = 287}, - [1454] = {.lex_state = 379}, - [1455] = {.lex_state = 267}, - [1456] = {.lex_state = 267}, - [1457] = {.lex_state = 287}, - [1458] = {.lex_state = 319}, - [1459] = {.lex_state = 351}, - [1460] = {.lex_state = 344}, - [1461] = {.lex_state = 287}, - [1462] = {.lex_state = 287}, - [1463] = {.lex_state = 287}, - [1464] = {.lex_state = 379}, - [1465] = {.lex_state = 319}, - [1466] = {.lex_state = 351}, - [1467] = {.lex_state = 287}, - [1468] = {.lex_state = 379}, - [1469] = {.lex_state = 319}, - [1470] = {.lex_state = 287}, - [1471] = {.lex_state = 379}, - [1472] = {.lex_state = 287}, + [952] = {.lex_state = 344}, + [953] = {.lex_state = 329}, + [954] = {.lex_state = 344}, + [955] = {.lex_state = 344}, + [956] = {.lex_state = 410}, + [957] = {.lex_state = 329}, + [958] = {.lex_state = 411}, + [959] = {.lex_state = 412}, + [960] = {.lex_state = 247}, + [961] = {.lex_state = 246}, + [962] = {.lex_state = 278}, + [963] = {.lex_state = 390}, + [964] = {.lex_state = 607}, + [965] = {.lex_state = 257}, + [966] = {.lex_state = 608}, + [967] = {.lex_state = 609}, + [968] = {.lex_state = 610}, + [969] = {.lex_state = 325}, + [970] = {.lex_state = 611}, + [971] = {.lex_state = 326}, + [972] = {.lex_state = 257}, + [973] = {.lex_state = 265}, + [974] = {.lex_state = 377}, + [975] = {.lex_state = 342}, + [976] = {.lex_state = 344}, + [977] = {.lex_state = 342}, + [978] = {.lex_state = 330}, + [979] = {.lex_state = 343}, + [980] = {.lex_state = 342}, + [981] = {.lex_state = 342}, + [982] = {.lex_state = 330}, + [983] = {.lex_state = 330}, + [984] = {.lex_state = 330}, + [985] = {.lex_state = 330}, + [986] = {.lex_state = 330}, + [987] = {.lex_state = 330}, + [988] = {.lex_state = 330}, + [989] = {.lex_state = 330}, + [990] = {.lex_state = 330}, + [991] = {.lex_state = 330}, + [992] = {.lex_state = 330}, + [993] = {.lex_state = 330}, + [994] = {.lex_state = 612}, + [995] = {.lex_state = 330}, + [996] = {.lex_state = 246}, + [997] = {.lex_state = 613}, + [998] = {.lex_state = 614}, + [999] = {.lex_state = 278}, + [1000] = {.lex_state = 275}, + [1001] = {.lex_state = 363}, + [1002] = {.lex_state = 363}, + [1003] = {.lex_state = 305}, + [1004] = {.lex_state = 305}, + [1005] = {.lex_state = 275}, + [1006] = {.lex_state = 323}, + [1007] = {.lex_state = 616}, + [1008] = {.lex_state = 294}, + [1009] = {.lex_state = 332}, + [1010] = {.lex_state = 335}, + [1011] = {.lex_state = 297}, + [1012] = {.lex_state = 323}, + [1013] = {.lex_state = 257}, + [1014] = {.lex_state = 272}, + [1015] = {.lex_state = 272}, + [1016] = {.lex_state = 272}, + [1017] = {.lex_state = 286}, + [1018] = {.lex_state = 315}, + [1019] = {.lex_state = 336}, + [1020] = {.lex_state = 329}, + [1021] = {.lex_state = 341}, + [1022] = {.lex_state = 354}, + [1023] = {.lex_state = 394}, + [1024] = {.lex_state = 318}, + [1025] = {.lex_state = 354}, + [1026] = {.lex_state = 387}, + [1027] = {.lex_state = 275}, + [1028] = {.lex_state = 363}, + [1029] = {.lex_state = 257}, + [1030] = {.lex_state = 329}, + [1031] = {.lex_state = 387}, + [1032] = {.lex_state = 617}, + [1033] = {.lex_state = 329}, + [1034] = {.lex_state = 618}, + [1035] = {.lex_state = 352}, + [1036] = {.lex_state = 621}, + [1037] = {.lex_state = 330}, + [1038] = {.lex_state = 330}, + [1039] = {.lex_state = 330}, + [1040] = {.lex_state = 330}, + [1041] = {.lex_state = 330}, + [1042] = {.lex_state = 622}, + [1043] = {.lex_state = 337}, + [1044] = {.lex_state = 277}, + [1045] = {.lex_state = 389}, + [1046] = {.lex_state = 623}, + [1047] = {.lex_state = 373}, + [1048] = {.lex_state = 624}, + [1049] = {.lex_state = 339}, + [1050] = {.lex_state = 329}, + [1051] = {.lex_state = 626}, + [1052] = {.lex_state = 330}, + [1053] = {.lex_state = 330}, + [1054] = {.lex_state = 330}, + [1055] = {.lex_state = 330}, + [1056] = {.lex_state = 330}, + [1057] = {.lex_state = 330}, + [1058] = {.lex_state = 627}, + [1059] = {.lex_state = 338}, + [1060] = {.lex_state = 333}, + [1061] = {.lex_state = 297}, + [1062] = {.lex_state = 315}, + [1063] = {.lex_state = 329}, + [1064] = {.lex_state = 628}, + [1065] = {.lex_state = 339}, + [1066] = {.lex_state = 629}, + [1067] = {.lex_state = 330}, + [1068] = {.lex_state = 342}, + [1069] = {.lex_state = 330}, + [1070] = {.lex_state = 354}, + [1071] = {.lex_state = 341}, + [1072] = {.lex_state = 354}, + [1073] = {.lex_state = 375}, + [1074] = {.lex_state = 375}, + [1075] = {.lex_state = 247}, + [1076] = {.lex_state = 246}, + [1077] = {.lex_state = 363}, + [1078] = {.lex_state = 339}, + [1079] = {.lex_state = 344}, + [1080] = {.lex_state = 386}, + [1081] = {.lex_state = 623}, + [1082] = {.lex_state = 339}, + [1083] = {.lex_state = 629}, + [1084] = {.lex_state = 609}, + [1085] = {.lex_state = 330}, + [1086] = {.lex_state = 330}, + [1087] = {.lex_state = 330}, + [1088] = {.lex_state = 330}, + [1089] = {.lex_state = 330}, + [1090] = {.lex_state = 361}, + [1091] = {.lex_state = 316}, + [1092] = {.lex_state = 630}, + [1093] = {.lex_state = 617}, + [1094] = {.lex_state = 610}, + [1095] = {.lex_state = 611}, + [1096] = {.lex_state = 294}, + [1097] = {.lex_state = 332}, + [1098] = {.lex_state = 354}, + [1099] = {.lex_state = 336}, + [1100] = {.lex_state = 366}, + [1101] = {.lex_state = 367}, + [1102] = {.lex_state = 354}, + [1103] = {.lex_state = 631}, + [1104] = {.lex_state = 632}, + [1105] = {.lex_state = 341}, + [1106] = {.lex_state = 341}, + [1107] = {.lex_state = 354}, + [1108] = {.lex_state = 330}, + [1109] = {.lex_state = 378}, + [1110] = {.lex_state = 330}, + [1111] = {.lex_state = 376}, + [1112] = {.lex_state = 377}, + [1113] = {.lex_state = 330}, + [1114] = {.lex_state = 385}, + [1115] = {.lex_state = 376}, + [1116] = {.lex_state = 354}, + [1117] = {.lex_state = 354}, + [1118] = {.lex_state = 354}, + [1119] = {.lex_state = 354}, + [1120] = {.lex_state = 354}, + [1121] = {.lex_state = 354}, + [1122] = {.lex_state = 354}, + [1123] = {.lex_state = 354}, + [1124] = {.lex_state = 354}, + [1125] = {.lex_state = 354}, + [1126] = {.lex_state = 354}, + [1127] = {.lex_state = 354}, + [1128] = {.lex_state = 339}, + [1129] = {.lex_state = 354}, + [1130] = {.lex_state = 354}, + [1131] = {.lex_state = 633}, + [1132] = {.lex_state = 278}, + [1133] = {.lex_state = 341}, + [1134] = {.lex_state = 634}, + [1135] = {.lex_state = 344}, + [1136] = {.lex_state = 272}, + [1137] = {.lex_state = 275}, + [1138] = {.lex_state = 363}, + [1139] = {.lex_state = 386}, + [1140] = {.lex_state = 371}, + [1141] = {.lex_state = 617}, + [1142] = {.lex_state = 278}, + [1143] = {.lex_state = 610}, + [1144] = {.lex_state = 336}, + [1145] = {.lex_state = 635}, + [1146] = {.lex_state = 294}, + [1147] = {.lex_state = 367}, + [1148] = {.lex_state = 321}, + [1149] = {.lex_state = 272}, + [1150] = {.lex_state = 330}, + [1151] = {.lex_state = 636}, + [1152] = {.lex_state = 637}, + [1153] = {.lex_state = 611}, + [1154] = {.lex_state = 377}, + [1155] = {.lex_state = 330}, + [1156] = {.lex_state = 638}, + [1157] = {.lex_state = 275}, + [1158] = {.lex_state = 305}, + [1159] = {.lex_state = 363}, + [1160] = {.lex_state = 342}, + [1161] = {.lex_state = 342}, + [1162] = {.lex_state = 330}, + [1163] = {.lex_state = 343}, + [1164] = {.lex_state = 342}, + [1165] = {.lex_state = 342}, + [1166] = {.lex_state = 391}, + [1167] = {.lex_state = 305}, + [1168] = {.lex_state = 639}, + [1169] = {.lex_state = 326}, + [1170] = {.lex_state = 617}, + [1171] = {.lex_state = 621}, + [1172] = {.lex_state = 640}, + [1173] = {.lex_state = 318}, + [1174] = {.lex_state = 623}, + [1175] = {.lex_state = 623}, + [1176] = {.lex_state = 623}, + [1177] = {.lex_state = 623}, + [1178] = {.lex_state = 623}, + [1179] = {.lex_state = 339}, + [1180] = {.lex_state = 623}, + [1181] = {.lex_state = 337}, + [1182] = {.lex_state = 641}, + [1183] = {.lex_state = 330}, + [1184] = {.lex_state = 636}, + [1185] = {.lex_state = 352}, + [1186] = {.lex_state = 330}, + [1187] = {.lex_state = 330}, + [1188] = {.lex_state = 330}, + [1189] = {.lex_state = 330}, + [1190] = {.lex_state = 330}, + [1191] = {.lex_state = 330}, + [1192] = {.lex_state = 330}, + [1193] = {.lex_state = 330}, + [1194] = {.lex_state = 329}, + [1195] = {.lex_state = 389}, + [1196] = {.lex_state = 339}, + [1197] = {.lex_state = 330}, + [1198] = {.lex_state = 374}, + [1199] = {.lex_state = 318}, + [1200] = {.lex_state = 642}, + [1201] = {.lex_state = 628}, + [1202] = {.lex_state = 339}, + [1203] = {.lex_state = 628}, + [1204] = {.lex_state = 628}, + [1205] = {.lex_state = 628}, + [1206] = {.lex_state = 339}, + [1207] = {.lex_state = 628}, + [1208] = {.lex_state = 330}, + [1209] = {.lex_state = 330}, + [1210] = {.lex_state = 330}, + [1211] = {.lex_state = 330}, + [1212] = {.lex_state = 330}, + [1213] = {.lex_state = 330}, + [1214] = {.lex_state = 330}, + [1215] = {.lex_state = 330}, + [1216] = {.lex_state = 330}, + [1217] = {.lex_state = 318}, + [1218] = {.lex_state = 636}, + [1219] = {.lex_state = 354}, + [1220] = {.lex_state = 330}, + [1221] = {.lex_state = 278}, + [1222] = {.lex_state = 375}, + [1223] = {.lex_state = 375}, + [1224] = {.lex_state = 341}, + [1225] = {.lex_state = 344}, + [1226] = {.lex_state = 374}, + [1227] = {.lex_state = 344}, + [1228] = {.lex_state = 386}, + [1229] = {.lex_state = 329}, + [1230] = {.lex_state = 318}, + [1231] = {.lex_state = 634}, + [1232] = {.lex_state = 630}, + [1233] = {.lex_state = 630}, + [1234] = {.lex_state = 630}, + [1235] = {.lex_state = 630}, + [1236] = {.lex_state = 339}, + [1237] = {.lex_state = 630}, + [1238] = {.lex_state = 293}, + [1239] = {.lex_state = 293}, + [1240] = {.lex_state = 643}, + [1241] = {.lex_state = 330}, + [1242] = {.lex_state = 330}, + [1243] = {.lex_state = 330}, + [1244] = {.lex_state = 330}, + [1245] = {.lex_state = 330}, + [1246] = {.lex_state = 330}, + [1247] = {.lex_state = 330}, + [1248] = {.lex_state = 330}, + [1249] = {.lex_state = 611}, + [1250] = {.lex_state = 341}, + [1251] = {.lex_state = 392}, + [1252] = {.lex_state = 392}, + [1253] = {.lex_state = 377}, + [1254] = {.lex_state = 391}, + [1255] = {.lex_state = 392}, + [1256] = {.lex_state = 371}, + [1257] = {.lex_state = 330}, + [1258] = {.lex_state = 318}, + [1259] = {.lex_state = 374}, + [1260] = {.lex_state = 318}, + [1261] = {.lex_state = 644}, + [1262] = {.lex_state = 361}, + [1263] = {.lex_state = 316}, + [1264] = {.lex_state = 344}, + [1265] = {.lex_state = 374}, + [1266] = {.lex_state = 386}, + [1267] = {.lex_state = 336}, + [1268] = {.lex_state = 623}, + [1269] = {.lex_state = 341}, + [1270] = {.lex_state = 344}, + [1271] = {.lex_state = 623}, + [1272] = {.lex_state = 354}, + [1273] = {.lex_state = 354}, + [1274] = {.lex_state = 354}, + [1275] = {.lex_state = 275}, + [1276] = {.lex_state = 330}, + [1277] = {.lex_state = 330}, + [1278] = {.lex_state = 376}, + [1279] = {.lex_state = 377}, + [1280] = {.lex_state = 330}, + [1281] = {.lex_state = 385}, + [1282] = {.lex_state = 344}, + [1283] = {.lex_state = 363}, + [1284] = {.lex_state = 341}, + [1285] = {.lex_state = 370}, + [1286] = {.lex_state = 315}, + [1287] = {.lex_state = 326}, + [1288] = {.lex_state = 318}, + [1289] = {.lex_state = 374}, + [1290] = {.lex_state = 341}, + [1291] = {.lex_state = 371}, + [1292] = {.lex_state = 623}, + [1293] = {.lex_state = 623}, + [1294] = {.lex_state = 376}, + [1295] = {.lex_state = 623}, + [1296] = {.lex_state = 623}, + [1297] = {.lex_state = 623}, + [1298] = {.lex_state = 623}, + [1299] = {.lex_state = 623}, + [1300] = {.lex_state = 326}, + [1301] = {.lex_state = 318}, + [1302] = {.lex_state = 623}, + [1303] = {.lex_state = 628}, + [1304] = {.lex_state = 628}, + [1305] = {.lex_state = 376}, + [1306] = {.lex_state = 628}, + [1307] = {.lex_state = 628}, + [1308] = {.lex_state = 628}, + [1309] = {.lex_state = 628}, + [1310] = {.lex_state = 628}, + [1311] = {.lex_state = 326}, + [1312] = {.lex_state = 392}, + [1313] = {.lex_state = 363}, + [1314] = {.lex_state = 363}, + [1315] = {.lex_state = 341}, + [1316] = {.lex_state = 329}, + [1317] = {.lex_state = 341}, + [1318] = {.lex_state = 374}, + [1319] = {.lex_state = 344}, + [1320] = {.lex_state = 326}, + [1321] = {.lex_state = 318}, + [1322] = {.lex_state = 293}, + [1323] = {.lex_state = 321}, + [1324] = {.lex_state = 630}, + [1325] = {.lex_state = 630}, + [1326] = {.lex_state = 376}, + [1327] = {.lex_state = 630}, + [1328] = {.lex_state = 630}, + [1329] = {.lex_state = 630}, + [1330] = {.lex_state = 630}, + [1331] = {.lex_state = 630}, + [1332] = {.lex_state = 344}, + [1333] = {.lex_state = 344}, + [1334] = {.lex_state = 341}, + [1335] = {.lex_state = 354}, + [1336] = {.lex_state = 645}, + [1337] = {.lex_state = 285}, + [1338] = {.lex_state = 293}, + [1339] = {.lex_state = 344}, + [1340] = {.lex_state = 329}, + [1341] = {.lex_state = 374}, + [1342] = {.lex_state = 341}, + [1343] = {.lex_state = 344}, + [1344] = {.lex_state = 386}, + [1345] = {.lex_state = 329}, + [1346] = {.lex_state = 392}, + [1347] = {.lex_state = 392}, + [1348] = {.lex_state = 377}, + [1349] = {.lex_state = 391}, + [1350] = {.lex_state = 392}, + [1351] = {.lex_state = 352}, + [1352] = {.lex_state = 371}, + [1353] = {.lex_state = 378}, + [1354] = {.lex_state = 623}, + [1355] = {.lex_state = 646}, + [1356] = {.lex_state = 330}, + [1357] = {.lex_state = 628}, + [1358] = {.lex_state = 647}, + [1359] = {.lex_state = 330}, + [1360] = {.lex_state = 344}, + [1361] = {.lex_state = 630}, + [1362] = {.lex_state = 648}, + [1363] = {.lex_state = 330}, + [1364] = {.lex_state = 341}, + [1365] = {.lex_state = 344}, + [1366] = {.lex_state = 329}, + [1367] = {.lex_state = 341}, + [1368] = {.lex_state = 374}, + [1369] = {.lex_state = 344}, + [1370] = {.lex_state = 344}, + [1371] = {.lex_state = 344}, + [1372] = {.lex_state = 344}, + [1373] = {.lex_state = 386}, + [1374] = {.lex_state = 371}, + [1375] = {.lex_state = 352}, + [1376] = {.lex_state = 623}, + [1377] = {.lex_state = 628}, + [1378] = {.lex_state = 630}, + [1379] = {.lex_state = 344}, + [1380] = {.lex_state = 329}, + [1381] = {.lex_state = 341}, + [1382] = {.lex_state = 341}, + [1383] = {.lex_state = 344}, + [1384] = {.lex_state = 374}, + [1385] = {.lex_state = 386}, + [1386] = {.lex_state = 371}, + [1387] = {.lex_state = 344}, + [1388] = {.lex_state = 344}, + [1389] = {.lex_state = 344}, + [1390] = {.lex_state = 329}, + [1391] = {.lex_state = 374}, + [1392] = {.lex_state = 386}, + [1393] = {.lex_state = 344}, + [1394] = {.lex_state = 329}, + [1395] = {.lex_state = 374}, + [1396] = {.lex_state = 344}, + [1397] = {.lex_state = 329}, + [1398] = {.lex_state = 344}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_translation_unit] = STATE(38), - [sym__top_level_item] = STATE(1075), - [sym__preproc_statement] = STATE(40), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_params] = STATE(175), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(1076), - [sym_function_definition] = STATE(1077), - [sym_declaration] = STATE(1078), - [sym__declaration_specifiers] = STATE(1079), - [sym_linkage_specification] = STATE(40), - [sym_declaration_list] = STATE(222), - [sym__declarator] = STATE(1080), - [sym__field_declarator] = STATE(1081), - [sym__abstract_declarator] = STATE(1082), + [sym_translation_unit] = STATE(16), + [sym_preproc_include] = STATE(999), + [sym_preproc_def] = STATE(999), + [sym_preproc_function_def] = STATE(999), + [sym_preproc_params] = STATE(55), + [sym_preproc_call] = STATE(999), + [sym_preproc_if] = STATE(1000), + [sym_preproc_if_in_compound_statement] = STATE(1001), + [sym_preproc_ifdef] = STATE(1000), + [sym_preproc_ifdef_in_compound_statement] = STATE(1002), + [sym_preproc_else] = STATE(1003), + [sym_preproc_else_in_compound_statement] = STATE(1004), + [sym_function_definition] = STATE(1005), + [sym_declaration] = STATE(1006), + [sym__declaration_specifiers] = STATE(1007), + [sym_linkage_specification] = STATE(1000), + [sym_declaration_list] = STATE(64), + [sym__declarator] = STATE(1008), + [sym__field_declarator] = STATE(1009), + [sym__abstract_declarator] = STATE(1010), [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_init_declarator] = STATE(1083), - [sym_compound_statement] = STATE(1084), - [sym_storage_class_specifier] = STATE(1048), - [sym_type_qualifier] = STATE(1085), - [sym__type_specifier] = STATE(1086), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_enumerator_list] = STATE(1087), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_field_declaration_list] = STATE(1088), - [sym_field_declaration] = STATE(1089), - [sym_enumerator] = STATE(1090), - [sym_parameter_list] = STATE(1091), - [sym_parameter_declaration] = STATE(1092), - [sym_labeled_statement] = STATE(1093), - [sym_expression_statement] = STATE(1093), - [sym_if_statement] = STATE(1093), - [sym_switch_statement] = STATE(1093), - [sym_case_statement] = STATE(1093), - [sym_while_statement] = STATE(1093), - [sym_do_statement] = STATE(1093), - [sym_for_statement] = STATE(1093), - [sym_return_statement] = STATE(1093), - [sym_break_statement] = STATE(1093), - [sym_continue_statement] = STATE(1093), - [sym_goto_statement] = STATE(1093), - [sym__expression] = STATE(1094), - [sym_comma_expression] = STATE(1095), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1096), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_argument_list] = STATE(165), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(1097), - [sym__initializer_list_contents] = STATE(546), - [sym_designator] = STATE(1098), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(1099), - [aux_sym_preproc_params_repeat1] = STATE(527), - [aux_sym_declaration_repeat1] = STATE(319), - [aux_sym__declaration_specifiers_repeat1] = STATE(1100), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_enumerator_list_repeat1] = STATE(414), - [aux_sym_field_declaration_list_repeat1] = STATE(249), - [aux_sym_field_declaration_repeat1] = STATE(1101), - [aux_sym_parameter_list_repeat1] = STATE(497), - [aux_sym_for_statement_repeat1] = STATE(1102), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [aux_sym__initializer_list_contents_repeat1] = STATE(1103), - [aux_sym_concatenated_string_repeat1] = STATE(133), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_init_declarator] = STATE(1011), + [sym_compound_statement] = STATE(1012), + [sym_storage_class_specifier] = STATE(972), + [sym_type_qualifier] = STATE(1013), + [sym__type_specifier] = STATE(1014), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_enumerator_list] = STATE(1015), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_field_declaration_list] = STATE(1016), + [sym_field_declaration] = STATE(1017), + [sym_enumerator] = STATE(1018), + [sym_parameter_list] = STATE(1019), + [sym_parameter_declaration] = STATE(1020), + [sym_labeled_statement] = STATE(1021), + [sym_expression_statement] = STATE(1021), + [sym_if_statement] = STATE(1021), + [sym_switch_statement] = STATE(1021), + [sym_case_statement] = STATE(1021), + [sym_while_statement] = STATE(1021), + [sym_do_statement] = STATE(1021), + [sym_for_statement] = STATE(1021), + [sym_return_statement] = STATE(1021), + [sym_break_statement] = STATE(1021), + [sym_continue_statement] = STATE(1021), + [sym_goto_statement] = STATE(1021), + [sym__expression] = STATE(1022), + [sym_comma_expression] = STATE(1023), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1024), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_argument_list] = STATE(299), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(1025), + [sym__initializer_list_contents] = STATE(326), + [sym_designator] = STATE(1026), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(999), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(1027), + [aux_sym_preproc_params_repeat1] = STATE(188), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1028), + [aux_sym_declaration_repeat1] = STATE(93), + [aux_sym__declaration_specifiers_repeat1] = STATE(1029), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_enumerator_list_repeat1] = STATE(110), + [aux_sym_field_declaration_list_repeat1] = STATE(74), + [aux_sym_field_declaration_repeat1] = STATE(218), + [aux_sym_parameter_list_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(1030), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [aux_sym__initializer_list_contents_repeat1] = STATE(1031), + [aux_sym_concatenated_string_repeat1] = STATE(278), [ts_builtin_sym_end] = ACTIONS(1), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(15), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(17), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(19), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(19), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(9), + [sym__pound_include] = ACTIONS(11), + [sym__pound_define] = ACTIONS(13), + [sym__pound_if] = ACTIONS(15), + [sym__pound_ifdef] = ACTIONS(17), + [sym__pound_endif] = ACTIONS(19), + [sym__pound_else] = ACTIONS(21), [sym_preproc_directive] = ACTIONS(23), [anon_sym_SEMI] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), @@ -14754,56544 +14451,52674 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(121), }, [1] = { - [sym_translation_unit] = STATE(38), - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), + [sym_translation_unit] = STATE(16), + [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_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), [ts_builtin_sym_end] = ACTIONS(123), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(197), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [2] = { - [sym_string_literal] = ACTIONS(199), - [sym_system_lib_string] = ACTIONS(201), + [sym_string_literal] = ACTIONS(153), + [sym_system_lib_string] = ACTIONS(155), [sym_comment] = ACTIONS(121), }, [3] = { - [sym_identifier] = ACTIONS(203), + [sym_identifier] = ACTIONS(157), [sym_comment] = ACTIONS(121), }, [4] = { - [sym__declarator] = STATE(62), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(67), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(221), - [sym_comment] = ACTIONS(121), + [sym_preproc_arg] = ACTIONS(159), + [sym_comment] = ACTIONS(161), }, [5] = { - [sym_preproc_arg] = ACTIONS(223), - [sym_comment] = ACTIONS(225), + [sym_identifier] = ACTIONS(163), + [sym_comment] = ACTIONS(121), }, [6] = { - [sym_identifier] = ACTIONS(227), - [sym_comment] = ACTIONS(121), + [sym_preproc_arg] = ACTIONS(165), + [sym_comment] = ACTIONS(161), }, [7] = { - [sym_preproc_arg] = ACTIONS(229), - [sym_comment] = ACTIONS(225), + [anon_sym_extern] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(167), + [anon_sym_static] = ACTIONS(167), + [anon_sym_auto] = ACTIONS(167), + [anon_sym_register] = ACTIONS(167), + [anon_sym_const] = ACTIONS(167), + [anon_sym_restrict] = ACTIONS(167), + [anon_sym_volatile] = ACTIONS(167), + [sym_function_specifier] = ACTIONS(167), + [anon_sym_unsigned] = ACTIONS(167), + [anon_sym_long] = ACTIONS(167), + [anon_sym_short] = ACTIONS(167), + [anon_sym_enum] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(167), + [anon_sym_union] = ACTIONS(167), + [sym_string_literal] = ACTIONS(169), + [sym_identifier] = ACTIONS(171), + [sym_comment] = ACTIONS(121), }, [8] = { - [ts_builtin_sym_end] = ACTIONS(231), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(231), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(233), - [sym_preproc_directive] = ACTIONS(235), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_extern] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_typedef] = ACTIONS(233), - [anon_sym_static] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [sym_function_specifier] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_union] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_else] = ACTIONS(233), - [anon_sym_switch] = ACTIONS(233), - [anon_sym_case] = ACTIONS(233), - [anon_sym_default] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_do] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_return] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_goto] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(231), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(233), - [sym_char_literal] = ACTIONS(233), - [sym_string_literal] = ACTIONS(231), - [sym_identifier] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_RPAREN] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_extern] = ACTIONS(167), + [anon_sym_STAR] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(167), + [anon_sym_static] = ACTIONS(167), + [anon_sym_auto] = ACTIONS(167), + [anon_sym_register] = ACTIONS(167), + [anon_sym_const] = ACTIONS(167), + [anon_sym_restrict] = ACTIONS(167), + [anon_sym_volatile] = ACTIONS(167), + [sym_function_specifier] = ACTIONS(167), + [anon_sym_unsigned] = ACTIONS(167), + [anon_sym_long] = ACTIONS(167), + [anon_sym_short] = ACTIONS(167), + [anon_sym_enum] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(167), + [anon_sym_union] = ACTIONS(167), + [anon_sym_COLON] = ACTIONS(173), + [anon_sym_AMP] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_sizeof] = ACTIONS(167), + [sym_number_literal] = ACTIONS(167), + [sym_char_literal] = ACTIONS(167), + [sym_string_literal] = ACTIONS(173), + [sym_identifier] = ACTIONS(171), [sym_comment] = ACTIONS(121), }, [9] = { - [anon_sym_extern] = ACTIONS(237), - [anon_sym_typedef] = ACTIONS(237), - [anon_sym_static] = ACTIONS(237), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [anon_sym_restrict] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [sym_function_specifier] = ACTIONS(237), - [anon_sym_unsigned] = ACTIONS(237), - [anon_sym_long] = ACTIONS(237), - [anon_sym_short] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(237), - [anon_sym_struct] = ACTIONS(237), - [anon_sym_union] = ACTIONS(237), - [sym_string_literal] = ACTIONS(239), - [sym_identifier] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(175), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_RPAREN] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(175), + [anon_sym_extern] = ACTIONS(177), + [anon_sym_STAR] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(175), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_static] = ACTIONS(177), + [anon_sym_auto] = ACTIONS(177), + [anon_sym_register] = ACTIONS(177), + [anon_sym_const] = ACTIONS(177), + [anon_sym_restrict] = ACTIONS(177), + [anon_sym_volatile] = ACTIONS(177), + [sym_function_specifier] = ACTIONS(177), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(177), + [anon_sym_struct] = ACTIONS(177), + [anon_sym_union] = ACTIONS(177), + [anon_sym_COLON] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_sizeof] = ACTIONS(177), + [sym_number_literal] = ACTIONS(177), + [sym_char_literal] = ACTIONS(177), + [sym_string_literal] = ACTIONS(175), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(121), }, [10] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_COMMA] = ACTIONS(181), + [anon_sym_RPAREN] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_extern] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_RBRACK] = ACTIONS(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_static] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(183), + [anon_sym_register] = ACTIONS(183), + [anon_sym_const] = ACTIONS(183), + [anon_sym_restrict] = ACTIONS(183), + [anon_sym_volatile] = ACTIONS(183), + [sym_function_specifier] = ACTIONS(183), + [anon_sym_unsigned] = ACTIONS(183), + [anon_sym_long] = ACTIONS(183), + [anon_sym_short] = ACTIONS(183), + [anon_sym_enum] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(183), + [anon_sym_union] = ACTIONS(183), + [anon_sym_COLON] = ACTIONS(181), [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_sizeof] = ACTIONS(183), + [sym_number_literal] = ACTIONS(183), + [sym_char_literal] = ACTIONS(183), + [sym_string_literal] = ACTIONS(181), + [sym_identifier] = ACTIONS(185), [sym_comment] = ACTIONS(121), }, [11] = { - [sym__declarator] = STATE(84), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(187), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_RBRACK] = ACTIONS(187), + [anon_sym_typedef] = ACTIONS(189), + [anon_sym_static] = ACTIONS(189), + [anon_sym_auto] = ACTIONS(189), + [anon_sym_register] = ACTIONS(189), + [anon_sym_const] = ACTIONS(189), + [anon_sym_restrict] = ACTIONS(189), + [anon_sym_volatile] = ACTIONS(189), + [sym_function_specifier] = ACTIONS(189), + [anon_sym_unsigned] = ACTIONS(189), + [anon_sym_long] = ACTIONS(189), + [anon_sym_short] = ACTIONS(189), + [anon_sym_COLON] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DASH_DASH] = ACTIONS(187), + [anon_sym_PLUS_PLUS] = ACTIONS(187), + [anon_sym_sizeof] = ACTIONS(189), + [sym_number_literal] = ACTIONS(189), + [sym_char_literal] = ACTIONS(189), + [sym_string_literal] = ACTIONS(187), + [sym_identifier] = ACTIONS(191), [sym_comment] = ACTIONS(121), }, [12] = { - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(261), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_typedef] = ACTIONS(237), - [anon_sym_static] = ACTIONS(237), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [anon_sym_restrict] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [sym_function_specifier] = ACTIONS(237), - [anon_sym_unsigned] = ACTIONS(237), - [anon_sym_long] = ACTIONS(237), - [anon_sym_short] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(237), - [anon_sym_struct] = ACTIONS(237), - [anon_sym_union] = ACTIONS(237), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_DASH_DASH] = ACTIONS(261), - [anon_sym_PLUS_PLUS] = ACTIONS(261), - [anon_sym_sizeof] = ACTIONS(237), - [sym_number_literal] = ACTIONS(237), - [sym_char_literal] = ACTIONS(237), - [sym_string_literal] = ACTIONS(261), - [sym_identifier] = ACTIONS(241), + [sym_enumerator_list] = STATE(32), + [anon_sym_LBRACE] = ACTIONS(193), + [sym_identifier] = ACTIONS(195), [sym_comment] = ACTIONS(121), }, [13] = { - [anon_sym_LPAREN] = ACTIONS(263), - [anon_sym_COMMA] = ACTIONS(263), - [anon_sym_RPAREN] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_RBRACK] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_static] = ACTIONS(265), - [anon_sym_auto] = ACTIONS(265), - [anon_sym_register] = ACTIONS(265), - [anon_sym_const] = ACTIONS(265), - [anon_sym_restrict] = ACTIONS(265), - [anon_sym_volatile] = ACTIONS(265), - [sym_function_specifier] = ACTIONS(265), - [anon_sym_unsigned] = ACTIONS(265), - [anon_sym_long] = ACTIONS(265), - [anon_sym_short] = ACTIONS(265), - [anon_sym_enum] = ACTIONS(265), - [anon_sym_struct] = ACTIONS(265), - [anon_sym_union] = ACTIONS(265), - [anon_sym_COLON] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_DASH_DASH] = ACTIONS(263), - [anon_sym_PLUS_PLUS] = ACTIONS(263), - [anon_sym_sizeof] = ACTIONS(265), - [sym_number_literal] = ACTIONS(265), - [sym_char_literal] = ACTIONS(265), - [sym_string_literal] = ACTIONS(263), - [sym_identifier] = ACTIONS(267), + [sym_field_declaration_list] = STATE(35), + [anon_sym_LBRACE] = ACTIONS(197), + [sym_identifier] = ACTIONS(199), [sym_comment] = ACTIONS(121), }, [14] = { - [anon_sym_LPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_RBRACK] = ACTIONS(269), - [anon_sym_typedef] = ACTIONS(271), - [anon_sym_static] = ACTIONS(271), - [anon_sym_auto] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [anon_sym_restrict] = ACTIONS(271), - [anon_sym_volatile] = ACTIONS(271), - [sym_function_specifier] = ACTIONS(271), - [anon_sym_unsigned] = ACTIONS(271), - [anon_sym_long] = ACTIONS(271), - [anon_sym_short] = ACTIONS(271), - [anon_sym_enum] = ACTIONS(271), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_union] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(269), - [anon_sym_PLUS_PLUS] = ACTIONS(269), - [anon_sym_sizeof] = ACTIONS(271), - [sym_number_literal] = ACTIONS(271), - [sym_char_literal] = ACTIONS(271), - [sym_string_literal] = ACTIONS(269), - [sym_identifier] = ACTIONS(273), + [sym_field_declaration_list] = STATE(37), + [anon_sym_LBRACE] = ACTIONS(197), + [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(121), }, [15] = { - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_typedef] = ACTIONS(277), - [anon_sym_static] = ACTIONS(277), - [anon_sym_auto] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [anon_sym_restrict] = ACTIONS(277), - [anon_sym_volatile] = ACTIONS(277), - [sym_function_specifier] = ACTIONS(277), - [anon_sym_unsigned] = ACTIONS(277), - [anon_sym_long] = ACTIONS(277), - [anon_sym_short] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PLUS] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_sizeof] = ACTIONS(277), - [sym_number_literal] = ACTIONS(277), - [sym_char_literal] = ACTIONS(277), - [sym_string_literal] = ACTIONS(275), - [sym_identifier] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(206), + [anon_sym_RPAREN] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(206), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_LBRACK] = ACTIONS(206), + [anon_sym_RBRACK] = ACTIONS(206), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(206), + [anon_sym_AMP] = ACTIONS(206), + [anon_sym_BANG] = ACTIONS(206), + [anon_sym_TILDE] = ACTIONS(206), + [anon_sym_PLUS] = ACTIONS(208), + [anon_sym_DASH] = ACTIONS(208), + [anon_sym_DASH_DASH] = ACTIONS(206), + [anon_sym_PLUS_PLUS] = ACTIONS(206), + [anon_sym_sizeof] = ACTIONS(208), + [sym_number_literal] = ACTIONS(208), + [sym_char_literal] = ACTIONS(208), + [sym_string_literal] = ACTIONS(206), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [16] = { - [sym_enumerator_list] = STATE(88), - [anon_sym_LBRACE] = ACTIONS(281), - [sym_identifier] = ACTIONS(283), + [ts_builtin_sym_end] = ACTIONS(212), [sym_comment] = ACTIONS(121), }, [17] = { - [sym_field_declaration_list] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(285), - [sym_identifier] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(214), + [sym__pound_include] = ACTIONS(216), + [sym__pound_define] = ACTIONS(216), + [sym__pound_if] = ACTIONS(216), + [sym__pound_ifdef] = ACTIONS(216), + [sym__pound_endif] = ACTIONS(216), + [sym__pound_else] = ACTIONS(216), + [sym_preproc_directive] = ACTIONS(218), + [anon_sym_extern] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_typedef] = ACTIONS(216), + [anon_sym_static] = ACTIONS(216), + [anon_sym_auto] = ACTIONS(216), + [anon_sym_register] = ACTIONS(216), + [anon_sym_const] = ACTIONS(216), + [anon_sym_restrict] = ACTIONS(216), + [anon_sym_volatile] = ACTIONS(216), + [sym_function_specifier] = ACTIONS(216), + [anon_sym_unsigned] = ACTIONS(216), + [anon_sym_long] = ACTIONS(216), + [anon_sym_short] = ACTIONS(216), + [anon_sym_enum] = ACTIONS(216), + [anon_sym_struct] = ACTIONS(216), + [anon_sym_union] = ACTIONS(216), + [sym_identifier] = ACTIONS(218), [sym_comment] = ACTIONS(121), }, [18] = { - [sym_field_declaration_list] = STATE(93), - [anon_sym_LBRACE] = ACTIONS(285), - [sym_identifier] = ACTIONS(289), + [sym__declarator] = STATE(43), + [sym_pointer_declarator] = STATE(44), + [sym_function_declarator] = STATE(44), + [sym_array_declarator] = STATE(44), + [sym_init_declarator] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(224), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [19] = { - [anon_sym_LPAREN] = ACTIONS(291), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(46), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_COMMA] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(228), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_RBRACK] = ACTIONS(228), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_BANG] = ACTIONS(228), + [anon_sym_TILDE] = ACTIONS(228), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(230), + [anon_sym_DASH_DASH] = ACTIONS(228), + [anon_sym_PLUS_PLUS] = ACTIONS(228), + [anon_sym_sizeof] = ACTIONS(230), + [sym_number_literal] = ACTIONS(230), + [sym_char_literal] = ACTIONS(230), + [sym_string_literal] = ACTIONS(228), + [sym_identifier] = ACTIONS(232), [sym_comment] = ACTIONS(121), }, [20] = { - [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_RPAREN] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_extern] = ACTIONS(236), + [anon_sym_STAR] = ACTIONS(234), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_RBRACK] = ACTIONS(234), + [anon_sym_typedef] = ACTIONS(236), + [anon_sym_static] = ACTIONS(236), + [anon_sym_auto] = ACTIONS(236), + [anon_sym_register] = ACTIONS(236), + [anon_sym_const] = ACTIONS(236), + [anon_sym_restrict] = ACTIONS(236), + [anon_sym_volatile] = ACTIONS(236), + [sym_function_specifier] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(234), + [anon_sym_BANG] = ACTIONS(234), + [anon_sym_TILDE] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(236), + [anon_sym_DASH] = ACTIONS(236), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_sizeof] = ACTIONS(236), + [sym_number_literal] = ACTIONS(236), + [sym_char_literal] = ACTIONS(236), + [sym_string_literal] = ACTIONS(234), + [sym_identifier] = ACTIONS(238), [sym_comment] = ACTIONS(121), }, [21] = { - [sym__expression] = STATE(103), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(47), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(240), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [22] = { - [anon_sym_COLON] = ACTIONS(311), + [sym_storage_class_specifier] = STATE(48), + [sym_type_qualifier] = STATE(48), + [sym__type_specifier] = STATE(49), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(242), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [23] = { - [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(244), + [anon_sym_COMMA] = ACTIONS(244), + [anon_sym_RPAREN] = ACTIONS(244), + [anon_sym_SEMI] = ACTIONS(244), + [anon_sym_extern] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(244), + [anon_sym_LBRACK] = ACTIONS(244), + [anon_sym_RBRACK] = ACTIONS(244), + [anon_sym_typedef] = ACTIONS(246), + [anon_sym_static] = ACTIONS(246), + [anon_sym_auto] = ACTIONS(246), + [anon_sym_register] = ACTIONS(246), + [anon_sym_const] = ACTIONS(246), + [anon_sym_restrict] = ACTIONS(246), + [anon_sym_volatile] = ACTIONS(246), + [sym_function_specifier] = ACTIONS(246), + [anon_sym_unsigned] = ACTIONS(248), + [anon_sym_long] = ACTIONS(248), + [anon_sym_short] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(244), + [anon_sym_AMP] = ACTIONS(244), + [anon_sym_BANG] = ACTIONS(244), + [anon_sym_TILDE] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(244), + [anon_sym_PLUS_PLUS] = ACTIONS(244), + [anon_sym_sizeof] = ACTIONS(246), + [sym_number_literal] = ACTIONS(246), + [sym_char_literal] = ACTIONS(246), + [sym_string_literal] = ACTIONS(244), + [sym_identifier] = ACTIONS(250), [sym_comment] = ACTIONS(121), }, [24] = { - [sym_compound_statement] = STATE(114), - [sym_labeled_statement] = STATE(114), - [sym_expression_statement] = STATE(114), - [sym_if_statement] = STATE(114), - [sym_switch_statement] = STATE(114), - [sym_case_statement] = STATE(114), - [sym_while_statement] = STATE(114), - [sym_do_statement] = STATE(114), - [sym_for_statement] = STATE(114), - [sym_return_statement] = STATE(114), - [sym_break_statement] = STATE(114), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(114), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [ts_builtin_sym_end] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(253), + [sym__pound_include] = ACTIONS(255), + [sym__pound_define] = ACTIONS(255), + [sym__pound_if] = ACTIONS(255), + [sym__pound_ifdef] = ACTIONS(255), + [sym__pound_endif] = ACTIONS(255), + [sym__pound_else] = ACTIONS(255), + [sym_preproc_directive] = ACTIONS(257), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_typedef] = ACTIONS(255), + [anon_sym_static] = ACTIONS(255), + [anon_sym_auto] = ACTIONS(255), + [anon_sym_register] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [anon_sym_restrict] = ACTIONS(255), + [anon_sym_volatile] = ACTIONS(255), + [sym_function_specifier] = ACTIONS(255), + [anon_sym_unsigned] = ACTIONS(255), + [anon_sym_long] = ACTIONS(255), + [anon_sym_short] = ACTIONS(255), + [anon_sym_enum] = ACTIONS(255), + [anon_sym_struct] = ACTIONS(255), + [anon_sym_union] = ACTIONS(255), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(255), + [anon_sym_default] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_goto] = ACTIONS(255), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_DASH_DASH] = ACTIONS(253), + [anon_sym_PLUS_PLUS] = ACTIONS(253), + [anon_sym_sizeof] = ACTIONS(255), + [sym_number_literal] = ACTIONS(255), + [sym_char_literal] = ACTIONS(255), + [sym_string_literal] = ACTIONS(253), + [sym_identifier] = ACTIONS(257), [sym_comment] = ACTIONS(121), }, [25] = { - [anon_sym_LPAREN] = ACTIONS(331), - [sym_comment] = ACTIONS(121), + [sym_preproc_params] = STATE(55), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(259), + [anon_sym_LF] = ACTIONS(261), + [anon_sym_LPAREN] = ACTIONS(263), + [sym_comment] = ACTIONS(161), }, [26] = { - [sym__expression] = STATE(123), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [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(58), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym__pound_endif] = ACTIONS(265), + [sym__pound_else] = ACTIONS(267), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [27] = { - [anon_sym_SEMI] = ACTIONS(349), + [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(61), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym__pound_endif] = ACTIONS(269), + [sym__pound_else] = ACTIONS(267), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [28] = { - [anon_sym_SEMI] = ACTIONS(351), + [ts_builtin_sym_end] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(271), + [sym__pound_include] = ACTIONS(273), + [sym__pound_define] = ACTIONS(273), + [sym__pound_if] = ACTIONS(273), + [sym__pound_ifdef] = ACTIONS(273), + [sym__pound_endif] = ACTIONS(273), + [sym__pound_else] = ACTIONS(273), + [sym_preproc_directive] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_typedef] = ACTIONS(273), + [anon_sym_static] = ACTIONS(273), + [anon_sym_auto] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [anon_sym_restrict] = ACTIONS(273), + [anon_sym_volatile] = ACTIONS(273), + [sym_function_specifier] = ACTIONS(273), + [anon_sym_unsigned] = ACTIONS(273), + [anon_sym_long] = ACTIONS(273), + [anon_sym_short] = ACTIONS(273), + [anon_sym_enum] = ACTIONS(273), + [anon_sym_struct] = ACTIONS(273), + [anon_sym_union] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(273), + [anon_sym_case] = ACTIONS(273), + [anon_sym_default] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(273), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_sizeof] = ACTIONS(273), + [sym_number_literal] = ACTIONS(273), + [sym_char_literal] = ACTIONS(273), + [sym_string_literal] = ACTIONS(271), + [sym_identifier] = ACTIONS(275), [sym_comment] = ACTIONS(121), }, [29] = { - [sym_identifier] = ACTIONS(353), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym__declaration_specifiers] = STATE(65), + [sym_declaration_list] = STATE(64), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [30] = { - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_enumerator] = STATE(69), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(281), + [sym_identifier] = ACTIONS(283), [sym_comment] = ACTIONS(121), }, [31] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_enumerator_list] = STATE(70), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_extern] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_typedef] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_auto] = ACTIONS(287), + [anon_sym_register] = ACTIONS(287), + [anon_sym_const] = ACTIONS(287), + [anon_sym_restrict] = ACTIONS(287), + [anon_sym_volatile] = ACTIONS(287), + [sym_function_specifier] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_sizeof] = ACTIONS(287), + [sym_number_literal] = ACTIONS(287), + [sym_char_literal] = ACTIONS(287), + [sym_string_literal] = ACTIONS(285), + [sym_identifier] = ACTIONS(289), [sym_comment] = ACTIONS(121), }, [32] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(291), + [anon_sym_extern] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_RBRACK] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_const] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [sym_function_specifier] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(293), + [anon_sym_DASH_DASH] = ACTIONS(291), + [anon_sym_PLUS_PLUS] = ACTIONS(291), + [anon_sym_sizeof] = ACTIONS(293), + [sym_number_literal] = ACTIONS(293), + [sym_char_literal] = ACTIONS(293), + [sym_string_literal] = ACTIONS(291), + [sym_identifier] = ACTIONS(295), [sym_comment] = ACTIONS(121), }, [33] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declaration_specifiers] = STATE(72), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_field_declaration] = STATE(73), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_field_declaration_list_repeat1] = STATE(74), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [34] = { - [sym__expression] = STATE(131), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(355), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_field_declaration_list] = STATE(75), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_COMMA] = ACTIONS(299), + [anon_sym_RPAREN] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym_extern] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(299), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_RBRACK] = ACTIONS(299), + [anon_sym_typedef] = ACTIONS(301), + [anon_sym_static] = ACTIONS(301), + [anon_sym_auto] = ACTIONS(301), + [anon_sym_register] = ACTIONS(301), + [anon_sym_const] = ACTIONS(301), + [anon_sym_restrict] = ACTIONS(301), + [anon_sym_volatile] = ACTIONS(301), + [sym_function_specifier] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(299), + [anon_sym_AMP] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(299), + [anon_sym_PLUS_PLUS] = ACTIONS(299), + [anon_sym_sizeof] = ACTIONS(301), + [sym_number_literal] = ACTIONS(301), + [sym_char_literal] = ACTIONS(301), + [sym_string_literal] = ACTIONS(299), + [sym_identifier] = ACTIONS(303), [sym_comment] = ACTIONS(121), }, [35] = { - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(357), - [anon_sym_RBRACE] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_RBRACK] = ACTIONS(357), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(357), - [anon_sym_QMARK] = ACTIONS(357), - [anon_sym_STAR_EQ] = ACTIONS(357), - [anon_sym_SLASH_EQ] = ACTIONS(357), - [anon_sym_PERCENT_EQ] = ACTIONS(357), - [anon_sym_PLUS_EQ] = ACTIONS(357), - [anon_sym_DASH_EQ] = ACTIONS(357), - [anon_sym_LT_LT_EQ] = ACTIONS(357), - [anon_sym_GT_GT_EQ] = ACTIONS(357), - [anon_sym_AMP_EQ] = ACTIONS(357), - [anon_sym_CARET_EQ] = ACTIONS(357), - [anon_sym_PIPE_EQ] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_PIPE_PIPE] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_EQ_EQ] = ACTIONS(357), - [anon_sym_BANG_EQ] = ACTIONS(357), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(357), - [anon_sym_PLUS_PLUS] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_DASH_GT] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_extern] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(305), + [anon_sym_typedef] = ACTIONS(307), + [anon_sym_static] = ACTIONS(307), + [anon_sym_auto] = ACTIONS(307), + [anon_sym_register] = ACTIONS(307), + [anon_sym_const] = ACTIONS(307), + [anon_sym_restrict] = ACTIONS(307), + [anon_sym_volatile] = ACTIONS(307), + [sym_function_specifier] = ACTIONS(307), + [anon_sym_COLON] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_sizeof] = ACTIONS(307), + [sym_number_literal] = ACTIONS(307), + [sym_char_literal] = ACTIONS(307), + [sym_string_literal] = ACTIONS(305), + [sym_identifier] = ACTIONS(309), [sym_comment] = ACTIONS(121), }, [36] = { - [aux_sym_concatenated_string_repeat1] = STATE(133), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(357), - [anon_sym_RBRACE] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_RBRACK] = ACTIONS(357), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(357), - [anon_sym_QMARK] = ACTIONS(357), - [anon_sym_STAR_EQ] = ACTIONS(357), - [anon_sym_SLASH_EQ] = ACTIONS(357), - [anon_sym_PERCENT_EQ] = ACTIONS(357), - [anon_sym_PLUS_EQ] = ACTIONS(357), - [anon_sym_DASH_EQ] = ACTIONS(357), - [anon_sym_LT_LT_EQ] = ACTIONS(357), - [anon_sym_GT_GT_EQ] = ACTIONS(357), - [anon_sym_AMP_EQ] = ACTIONS(357), - [anon_sym_CARET_EQ] = ACTIONS(357), - [anon_sym_PIPE_EQ] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_PIPE_PIPE] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_EQ_EQ] = ACTIONS(357), - [anon_sym_BANG_EQ] = ACTIONS(357), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(359), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(357), - [anon_sym_PLUS_PLUS] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_DASH_GT] = ACTIONS(357), - [sym_string_literal] = ACTIONS(361), + [sym_field_declaration_list] = STATE(76), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_extern] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_typedef] = ACTIONS(313), + [anon_sym_static] = ACTIONS(313), + [anon_sym_auto] = ACTIONS(313), + [anon_sym_register] = ACTIONS(313), + [anon_sym_const] = ACTIONS(313), + [anon_sym_restrict] = ACTIONS(313), + [anon_sym_volatile] = ACTIONS(313), + [sym_function_specifier] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(311), + [anon_sym_PLUS_PLUS] = ACTIONS(311), + [anon_sym_sizeof] = ACTIONS(313), + [sym_number_literal] = ACTIONS(313), + [sym_char_literal] = ACTIONS(313), + [sym_string_literal] = ACTIONS(311), + [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(121), }, [37] = { - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(317), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(317), + [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_typedef] = ACTIONS(319), + [anon_sym_static] = ACTIONS(319), + [anon_sym_auto] = ACTIONS(319), + [anon_sym_register] = ACTIONS(319), + [anon_sym_const] = ACTIONS(319), + [anon_sym_restrict] = ACTIONS(319), + [anon_sym_volatile] = ACTIONS(319), + [sym_function_specifier] = ACTIONS(319), + [anon_sym_COLON] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_BANG] = ACTIONS(317), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_DASH_DASH] = ACTIONS(317), + [anon_sym_PLUS_PLUS] = ACTIONS(317), + [anon_sym_sizeof] = ACTIONS(319), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(317), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(121), }, [38] = { - [ts_builtin_sym_end] = ACTIONS(389), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_type_descriptor] = STATE(79), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [39] = { - [ts_builtin_sym_end] = ACTIONS(391), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(393), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(391), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(393), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(393), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(393), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(393), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(393), - [sym_preproc_directive] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_extern] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_typedef] = ACTIONS(393), - [anon_sym_static] = ACTIONS(393), - [anon_sym_auto] = ACTIONS(393), - [anon_sym_register] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_restrict] = ACTIONS(393), - [anon_sym_volatile] = ACTIONS(393), - [sym_function_specifier] = ACTIONS(393), - [anon_sym_unsigned] = ACTIONS(393), - [anon_sym_long] = ACTIONS(393), - [anon_sym_short] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(393), - [anon_sym_struct] = ACTIONS(393), - [anon_sym_union] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_switch] = ACTIONS(393), - [anon_sym_case] = ACTIONS(393), - [anon_sym_default] = ACTIONS(393), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(393), - [anon_sym_return] = ACTIONS(393), - [anon_sym_break] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(391), - [anon_sym_sizeof] = ACTIONS(393), - [sym_number_literal] = ACTIONS(393), - [sym_char_literal] = ACTIONS(393), - [sym_string_literal] = ACTIONS(391), - [sym_identifier] = ACTIONS(395), + [sym__declarator] = STATE(83), + [sym_pointer_declarator] = STATE(44), + [sym_function_declarator] = STATE(44), + [sym_array_declarator] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(323), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [40] = { - [ts_builtin_sym_end] = ACTIONS(397), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(399), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(397), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(399), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(399), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(399), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(399), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(399), - [sym_preproc_directive] = ACTIONS(401), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_typedef] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_auto] = ACTIONS(399), - [anon_sym_register] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_restrict] = ACTIONS(399), - [anon_sym_volatile] = ACTIONS(399), - [sym_function_specifier] = ACTIONS(399), - [anon_sym_unsigned] = ACTIONS(399), - [anon_sym_long] = ACTIONS(399), - [anon_sym_short] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_struct] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_goto] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_sizeof] = ACTIONS(399), - [sym_number_literal] = ACTIONS(399), - [sym_char_literal] = ACTIONS(399), - [sym_string_literal] = ACTIONS(397), - [sym_identifier] = ACTIONS(401), + [ts_builtin_sym_end] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(325), + [sym__pound_include] = ACTIONS(327), + [sym__pound_define] = ACTIONS(327), + [sym__pound_if] = ACTIONS(327), + [sym__pound_ifdef] = ACTIONS(327), + [sym__pound_endif] = ACTIONS(327), + [sym__pound_else] = ACTIONS(327), + [sym_preproc_directive] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_typedef] = ACTIONS(327), + [anon_sym_static] = ACTIONS(327), + [anon_sym_auto] = ACTIONS(327), + [anon_sym_register] = ACTIONS(327), + [anon_sym_const] = ACTIONS(327), + [anon_sym_restrict] = ACTIONS(327), + [anon_sym_volatile] = ACTIONS(327), + [sym_function_specifier] = ACTIONS(327), + [anon_sym_unsigned] = ACTIONS(327), + [anon_sym_long] = ACTIONS(327), + [anon_sym_short] = ACTIONS(327), + [anon_sym_enum] = ACTIONS(327), + [anon_sym_struct] = ACTIONS(327), + [anon_sym_union] = ACTIONS(327), + [anon_sym_if] = ACTIONS(327), + [anon_sym_switch] = ACTIONS(327), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(327), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(327), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(327), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_TILDE] = ACTIONS(325), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(325), + [anon_sym_sizeof] = ACTIONS(327), + [sym_number_literal] = ACTIONS(327), + [sym_char_literal] = ACTIONS(327), + [sym_string_literal] = ACTIONS(325), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(121), }, [41] = { - [ts_builtin_sym_end] = ACTIONS(403), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(405), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(403), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(405), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(405), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(405), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(405), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(405), - [sym_preproc_directive] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_extern] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_typedef] = ACTIONS(405), - [anon_sym_static] = ACTIONS(405), - [anon_sym_auto] = ACTIONS(405), - [anon_sym_register] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [anon_sym_restrict] = ACTIONS(405), - [anon_sym_volatile] = ACTIONS(405), - [sym_function_specifier] = ACTIONS(405), - [anon_sym_unsigned] = ACTIONS(405), - [anon_sym_long] = ACTIONS(405), - [anon_sym_short] = ACTIONS(405), - [anon_sym_enum] = ACTIONS(405), - [anon_sym_struct] = ACTIONS(405), - [anon_sym_union] = ACTIONS(405), - [anon_sym_if] = ACTIONS(405), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(405), - [anon_sym_default] = ACTIONS(405), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(405), - [anon_sym_return] = ACTIONS(405), - [anon_sym_break] = ACTIONS(405), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_goto] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(403), - [anon_sym_PLUS_PLUS] = ACTIONS(403), - [anon_sym_sizeof] = ACTIONS(405), - [sym_number_literal] = ACTIONS(405), - [sym_char_literal] = ACTIONS(405), - [sym_string_literal] = ACTIONS(403), - [sym_identifier] = ACTIONS(407), - [sym_comment] = ACTIONS(121), - }, - [42] = { - [sym__declarator] = STATE(140), + [sym__declarator] = STATE(84), [sym_pointer_declarator] = STATE(44), [sym_function_declarator] = STATE(44), [sym_array_declarator] = STATE(44), - [sym_init_declarator] = STATE(141), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(224), + [sym_identifier] = ACTIONS(226), + [sym_comment] = ACTIONS(121), + }, + [42] = { + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_COMMA] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(331), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_EQ] = ACTIONS(331), [sym_comment] = ACTIONS(121), }, [43] = { - [sym_compound_statement] = STATE(144), - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(419), + [sym_compound_statement] = STATE(91), + [sym_parameter_list] = STATE(92), + [aux_sym_declaration_repeat1] = STATE(93), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(343), [sym_comment] = ACTIONS(121), }, [44] = { - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(421), - [anon_sym_RPAREN] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(345), [sym_comment] = ACTIONS(121), }, [45] = { - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(146), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_COMMA] = ACTIONS(423), - [anon_sym_RPAREN] = ACTIONS(423), - [anon_sym_SEMI] = ACTIONS(423), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_RBRACK] = ACTIONS(423), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_TILDE] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_DASH_DASH] = ACTIONS(423), - [anon_sym_PLUS_PLUS] = ACTIONS(423), - [anon_sym_sizeof] = ACTIONS(425), - [sym_number_literal] = ACTIONS(425), - [sym_char_literal] = ACTIONS(425), - [sym_string_literal] = ACTIONS(423), - [sym_identifier] = ACTIONS(427), + [aux_sym_declaration_repeat1] = STATE(93), + [anon_sym_COMMA] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), [sym_comment] = ACTIONS(121), }, [46] = { - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_extern] = ACTIONS(431), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(429), - [anon_sym_RBRACK] = ACTIONS(429), - [anon_sym_typedef] = ACTIONS(431), - [anon_sym_static] = ACTIONS(431), - [anon_sym_auto] = ACTIONS(431), - [anon_sym_register] = ACTIONS(431), - [anon_sym_const] = ACTIONS(431), - [anon_sym_restrict] = ACTIONS(431), - [anon_sym_volatile] = ACTIONS(431), - [sym_function_specifier] = ACTIONS(431), - [anon_sym_COLON] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_PLUS] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_sizeof] = ACTIONS(431), - [sym_number_literal] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [sym_string_literal] = ACTIONS(429), - [sym_identifier] = ACTIONS(433), + [sym_storage_class_specifier] = STATE(48), + [sym_type_qualifier] = STATE(48), + [anon_sym_LPAREN] = ACTIONS(347), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_RPAREN] = ACTIONS(347), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH_DASH] = ACTIONS(347), + [anon_sym_PLUS_PLUS] = ACTIONS(347), + [anon_sym_sizeof] = ACTIONS(349), + [sym_number_literal] = ACTIONS(349), + [sym_char_literal] = ACTIONS(349), + [sym_string_literal] = ACTIONS(347), + [sym_identifier] = ACTIONS(351), [sym_comment] = ACTIONS(121), }, [47] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_PERCENT_EQ] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_CARET_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [ts_builtin_sym_end] = ACTIONS(353), + [sym__pound_include] = ACTIONS(355), + [sym__pound_define] = ACTIONS(355), + [sym__pound_if] = ACTIONS(355), + [sym__pound_ifdef] = ACTIONS(355), + [sym__pound_endif] = ACTIONS(355), + [sym__pound_else] = ACTIONS(355), + [sym_preproc_directive] = ACTIONS(357), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_typedef] = ACTIONS(355), + [anon_sym_static] = ACTIONS(355), + [anon_sym_auto] = ACTIONS(355), + [anon_sym_register] = ACTIONS(355), + [anon_sym_const] = ACTIONS(355), + [anon_sym_restrict] = ACTIONS(355), + [anon_sym_volatile] = ACTIONS(355), + [sym_function_specifier] = ACTIONS(355), + [anon_sym_unsigned] = ACTIONS(355), + [anon_sym_long] = ACTIONS(355), + [anon_sym_short] = ACTIONS(355), + [anon_sym_enum] = ACTIONS(355), + [anon_sym_struct] = ACTIONS(355), + [anon_sym_union] = ACTIONS(355), + [sym_identifier] = ACTIONS(357), [sym_comment] = ACTIONS(121), }, [48] = { - [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_RBRACK] = ACTIONS(359), + [anon_sym_typedef] = ACTIONS(361), + [anon_sym_static] = ACTIONS(361), + [anon_sym_auto] = ACTIONS(361), + [anon_sym_register] = ACTIONS(361), + [anon_sym_const] = ACTIONS(361), + [anon_sym_restrict] = ACTIONS(361), + [anon_sym_volatile] = ACTIONS(361), + [sym_function_specifier] = ACTIONS(361), + [anon_sym_unsigned] = ACTIONS(361), + [anon_sym_long] = ACTIONS(361), + [anon_sym_short] = ACTIONS(361), + [anon_sym_enum] = ACTIONS(361), + [anon_sym_struct] = ACTIONS(361), + [anon_sym_union] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(359), + [anon_sym_PLUS_PLUS] = ACTIONS(359), + [anon_sym_sizeof] = ACTIONS(361), + [sym_number_literal] = ACTIONS(361), + [sym_char_literal] = ACTIONS(361), + [sym_string_literal] = ACTIONS(359), + [sym_identifier] = ACTIONS(363), [sym_comment] = ACTIONS(121), }, [49] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(475), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(197), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(347), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_RPAREN] = ACTIONS(347), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH_DASH] = ACTIONS(347), + [anon_sym_PLUS_PLUS] = ACTIONS(347), + [anon_sym_sizeof] = ACTIONS(349), + [sym_number_literal] = ACTIONS(349), + [sym_char_literal] = ACTIONS(349), + [sym_string_literal] = ACTIONS(347), + [sym_identifier] = ACTIONS(351), [sym_comment] = ACTIONS(121), }, [50] = { - [sym_storage_class_specifier] = STATE(167), - [sym_type_qualifier] = STATE(167), - [sym__type_specifier] = STATE(169), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(477), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(365), + [anon_sym_RBRACK] = ACTIONS(365), + [anon_sym_typedef] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_auto] = ACTIONS(367), + [anon_sym_register] = ACTIONS(367), + [anon_sym_const] = ACTIONS(367), + [anon_sym_restrict] = ACTIONS(367), + [anon_sym_volatile] = ACTIONS(367), + [sym_function_specifier] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_long] = ACTIONS(367), + [anon_sym_short] = ACTIONS(367), + [anon_sym_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_DASH_DASH] = ACTIONS(365), + [anon_sym_PLUS_PLUS] = ACTIONS(365), + [anon_sym_sizeof] = ACTIONS(367), + [sym_number_literal] = ACTIONS(367), + [sym_char_literal] = ACTIONS(367), + [sym_string_literal] = ACTIONS(365), + [sym_identifier] = ACTIONS(369), [sym_comment] = ACTIONS(121), }, [51] = { - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_auto] = ACTIONS(483), - [anon_sym_register] = ACTIONS(483), - [anon_sym_const] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [sym_function_specifier] = ACTIONS(483), - [anon_sym_unsigned] = ACTIONS(485), - [anon_sym_long] = ACTIONS(485), - [anon_sym_short] = ACTIONS(485), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(481), - [anon_sym_PLUS_PLUS] = ACTIONS(481), - [anon_sym_sizeof] = ACTIONS(483), - [sym_number_literal] = ACTIONS(483), - [sym_char_literal] = ACTIONS(483), - [sym_string_literal] = ACTIONS(481), - [sym_identifier] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(371), + [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_RBRACK] = ACTIONS(371), + [anon_sym_typedef] = ACTIONS(373), + [anon_sym_static] = ACTIONS(373), + [anon_sym_auto] = ACTIONS(373), + [anon_sym_register] = ACTIONS(373), + [anon_sym_const] = ACTIONS(373), + [anon_sym_restrict] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [sym_function_specifier] = ACTIONS(373), + [anon_sym_COLON] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_TILDE] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_DASH_DASH] = ACTIONS(371), + [anon_sym_PLUS_PLUS] = ACTIONS(371), + [anon_sym_sizeof] = ACTIONS(373), + [sym_number_literal] = ACTIONS(373), + [sym_char_literal] = ACTIONS(373), + [sym_string_literal] = ACTIONS(371), + [sym_identifier] = ACTIONS(375), [sym_comment] = ACTIONS(121), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(490), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(490), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_extern] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_typedef] = ACTIONS(492), - [anon_sym_static] = ACTIONS(492), - [anon_sym_auto] = ACTIONS(492), - [anon_sym_register] = ACTIONS(492), - [anon_sym_const] = ACTIONS(492), - [anon_sym_restrict] = ACTIONS(492), - [anon_sym_volatile] = ACTIONS(492), - [sym_function_specifier] = ACTIONS(492), - [anon_sym_unsigned] = ACTIONS(492), - [anon_sym_long] = ACTIONS(492), - [anon_sym_short] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(492), - [anon_sym_struct] = ACTIONS(492), - [anon_sym_union] = ACTIONS(492), - [anon_sym_if] = ACTIONS(492), - [anon_sym_switch] = ACTIONS(492), - [anon_sym_case] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_while] = ACTIONS(492), - [anon_sym_do] = ACTIONS(492), - [anon_sym_for] = ACTIONS(492), - [anon_sym_return] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_continue] = ACTIONS(492), - [anon_sym_goto] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_DASH_DASH] = ACTIONS(490), - [anon_sym_PLUS_PLUS] = ACTIONS(490), - [anon_sym_sizeof] = ACTIONS(492), - [sym_number_literal] = ACTIONS(492), - [sym_char_literal] = ACTIONS(492), - [sym_string_literal] = ACTIONS(490), - [sym_identifier] = ACTIONS(494), - [sym_comment] = ACTIONS(121), + [sym_preproc_arg] = ACTIONS(377), + [sym_comment] = ACTIONS(161), }, [53] = { - [sym_preproc_params] = STATE(175), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(496), - [anon_sym_LF] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(500), - [sym_comment] = ACTIONS(225), + [ts_builtin_sym_end] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(379), + [sym__pound_include] = ACTIONS(381), + [sym__pound_define] = ACTIONS(381), + [sym__pound_if] = ACTIONS(381), + [sym__pound_ifdef] = ACTIONS(381), + [sym__pound_endif] = ACTIONS(381), + [sym__pound_else] = ACTIONS(381), + [sym_preproc_directive] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(379), + [anon_sym_typedef] = ACTIONS(381), + [anon_sym_static] = ACTIONS(381), + [anon_sym_auto] = ACTIONS(381), + [anon_sym_register] = ACTIONS(381), + [anon_sym_const] = ACTIONS(381), + [anon_sym_restrict] = ACTIONS(381), + [anon_sym_volatile] = ACTIONS(381), + [sym_function_specifier] = ACTIONS(381), + [anon_sym_unsigned] = ACTIONS(381), + [anon_sym_long] = ACTIONS(381), + [anon_sym_short] = ACTIONS(381), + [anon_sym_enum] = ACTIONS(381), + [anon_sym_struct] = ACTIONS(381), + [anon_sym_union] = ACTIONS(381), + [anon_sym_if] = ACTIONS(381), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_default] = ACTIONS(381), + [anon_sym_while] = ACTIONS(381), + [anon_sym_do] = ACTIONS(381), + [anon_sym_for] = ACTIONS(381), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(381), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_goto] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_sizeof] = ACTIONS(381), + [sym_number_literal] = ACTIONS(381), + [sym_char_literal] = ACTIONS(381), + [sym_string_literal] = ACTIONS(379), + [sym_identifier] = ACTIONS(383), + [sym_comment] = ACTIONS(121), }, [54] = { - [sym__declarator] = STATE(62), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(176), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(387), + [sym_identifier] = ACTIONS(389), [sym_comment] = ACTIONS(121), }, [55] = { - [sym__declarator] = STATE(84), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(502), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(391), + [sym_preproc_arg] = ACTIONS(393), + [sym_comment] = ACTIONS(161), }, [56] = { - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(395), + [sym__pound_include] = ACTIONS(397), + [sym__pound_define] = ACTIONS(397), + [sym__pound_if] = ACTIONS(397), + [sym__pound_ifdef] = ACTIONS(397), + [sym__pound_endif] = ACTIONS(397), + [sym__pound_else] = ACTIONS(397), + [sym_preproc_directive] = ACTIONS(399), + [anon_sym_extern] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_typedef] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_auto] = ACTIONS(397), + [anon_sym_register] = ACTIONS(397), + [anon_sym_const] = ACTIONS(397), + [anon_sym_restrict] = ACTIONS(397), + [anon_sym_volatile] = ACTIONS(397), + [sym_function_specifier] = ACTIONS(397), + [anon_sym_unsigned] = ACTIONS(397), + [anon_sym_long] = ACTIONS(397), + [anon_sym_short] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_union] = ACTIONS(397), + [sym_identifier] = ACTIONS(399), [sym_comment] = ACTIONS(121), }, [57] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [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_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(100), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym__pound_endif] = ACTIONS(401), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [58] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__pound_endif] = ACTIONS(403), [sym_comment] = ACTIONS(121), }, [59] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_preproc_else] = STATE(102), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(47), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym__pound_endif] = ACTIONS(405), + [sym__pound_else] = ACTIONS(267), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [60] = { - [sym__expression] = STATE(180), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(407), + [sym__pound_include] = ACTIONS(409), + [sym__pound_define] = ACTIONS(409), + [sym__pound_if] = ACTIONS(409), + [sym__pound_ifdef] = ACTIONS(409), + [sym__pound_endif] = ACTIONS(409), + [sym__pound_else] = ACTIONS(409), + [sym_preproc_directive] = ACTIONS(411), + [anon_sym_extern] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_typedef] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_auto] = ACTIONS(409), + [anon_sym_register] = ACTIONS(409), + [anon_sym_const] = ACTIONS(409), + [anon_sym_restrict] = ACTIONS(409), + [anon_sym_volatile] = ACTIONS(409), + [sym_function_specifier] = ACTIONS(409), + [anon_sym_unsigned] = ACTIONS(409), + [anon_sym_long] = ACTIONS(409), + [anon_sym_short] = ACTIONS(409), + [anon_sym_enum] = ACTIONS(409), + [anon_sym_struct] = ACTIONS(409), + [anon_sym_union] = ACTIONS(409), + [sym_identifier] = ACTIONS(411), [sym_comment] = ACTIONS(121), }, [61] = { - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__pound_endif] = ACTIONS(413), [sym_comment] = ACTIONS(121), }, [62] = { - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(419), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_preproc_else] = STATE(104), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(47), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym__pound_endif] = ACTIONS(415), + [sym__pound_else] = ACTIONS(267), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [63] = { - [anon_sym_const] = ACTIONS(514), - [anon_sym_restrict] = ACTIONS(514), - [anon_sym_volatile] = ACTIONS(514), - [anon_sym_unsigned] = ACTIONS(514), - [anon_sym_long] = ACTIONS(514), - [anon_sym_short] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [sym_identifier] = ACTIONS(516), + [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_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(106), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [64] = { - [sym__abstract_declarator] = STATE(185), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_abstract_function_declarator] = STATE(186), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), + [ts_builtin_sym_end] = ACTIONS(419), + [sym__pound_include] = ACTIONS(421), + [sym__pound_define] = ACTIONS(421), + [sym__pound_if] = ACTIONS(421), + [sym__pound_ifdef] = ACTIONS(421), + [sym__pound_endif] = ACTIONS(421), + [sym__pound_else] = ACTIONS(421), + [sym_preproc_directive] = ACTIONS(423), + [anon_sym_extern] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_auto] = ACTIONS(421), + [anon_sym_register] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_restrict] = ACTIONS(421), + [anon_sym_volatile] = ACTIONS(421), + [sym_function_specifier] = ACTIONS(421), + [anon_sym_unsigned] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(121), }, [65] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_RPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__declarator] = STATE(43), + [sym_pointer_declarator] = STATE(44), + [sym_function_declarator] = STATE(44), + [sym_array_declarator] = STATE(44), + [sym_init_declarator] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(224), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [66] = { - [anon_sym_RPAREN] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(425), [sym_comment] = ACTIONS(121), }, [67] = { - [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_extern] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_RBRACK] = ACTIONS(427), + [anon_sym_typedef] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_auto] = ACTIONS(429), + [anon_sym_register] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_restrict] = ACTIONS(429), + [anon_sym_volatile] = ACTIONS(429), + [sym_function_specifier] = ACTIONS(429), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(427), + [anon_sym_PLUS_PLUS] = ACTIONS(427), + [anon_sym_sizeof] = ACTIONS(429), + [sym_number_literal] = ACTIONS(429), + [sym_char_literal] = ACTIONS(429), + [sym_string_literal] = ACTIONS(427), + [sym_identifier] = ACTIONS(431), [sym_comment] = ACTIONS(121), }, [68] = { - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_unsigned] = ACTIONS(485), - [anon_sym_long] = ACTIONS(485), - [anon_sym_short] = ACTIONS(485), - [sym_identifier] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(435), [sym_comment] = ACTIONS(121), }, [69] = { - [sym_type_qualifier] = STATE(203), - [sym__type_specifier] = STATE(204), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(479), + [aux_sym_enumerator_list_repeat1] = STATE(110), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(425), [sym_comment] = ACTIONS(121), }, [70] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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_preproc_else] = STATE(214), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(215), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(562), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(564), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_COMMA] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_extern] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_RBRACK] = ACTIONS(439), + [anon_sym_typedef] = ACTIONS(441), + [anon_sym_static] = ACTIONS(441), + [anon_sym_auto] = ACTIONS(441), + [anon_sym_register] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_restrict] = ACTIONS(441), + [anon_sym_volatile] = ACTIONS(441), + [sym_function_specifier] = ACTIONS(441), + [anon_sym_COLON] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_TILDE] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(439), + [anon_sym_sizeof] = ACTIONS(441), + [sym_number_literal] = ACTIONS(441), + [sym_char_literal] = ACTIONS(441), + [sym_string_literal] = ACTIONS(439), + [sym_identifier] = ACTIONS(443), [sym_comment] = ACTIONS(121), }, [71] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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_preproc_else] = STATE(217), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(580), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(564), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_RPAREN] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_extern] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_RBRACK] = ACTIONS(445), + [anon_sym_typedef] = ACTIONS(447), + [anon_sym_static] = ACTIONS(447), + [anon_sym_auto] = ACTIONS(447), + [anon_sym_register] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_restrict] = ACTIONS(447), + [anon_sym_volatile] = ACTIONS(447), + [sym_function_specifier] = ACTIONS(447), + [anon_sym_COLON] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_TILDE] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_sizeof] = ACTIONS(447), + [sym_number_literal] = ACTIONS(447), + [sym_char_literal] = ACTIONS(447), + [sym_string_literal] = ACTIONS(445), + [sym_identifier] = ACTIONS(449), [sym_comment] = ACTIONS(121), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(582), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(584), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(584), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(584), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(584), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(584), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(584), - [sym_preproc_directive] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_typedef] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_auto] = ACTIONS(584), - [anon_sym_register] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_restrict] = ACTIONS(584), - [anon_sym_volatile] = ACTIONS(584), - [sym_function_specifier] = ACTIONS(584), - [anon_sym_unsigned] = ACTIONS(584), - [anon_sym_long] = ACTIONS(584), - [anon_sym_short] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_case] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_do] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(582), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_sizeof] = ACTIONS(584), - [sym_number_literal] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [sym_string_literal] = ACTIONS(582), - [sym_identifier] = ACTIONS(586), + [sym__field_declarator] = STATE(116), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_field_declarator] = STATE(118), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_COLON] = ACTIONS(457), + [sym_identifier] = ACTIONS(459), [sym_comment] = ACTIONS(121), }, [73] = { - [sym_function_definition] = STATE(222), - [sym_declaration] = STATE(222), - [sym__declaration_specifiers] = STATE(223), - [sym_declaration_list] = STATE(222), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_typedef] = ACTIONS(461), + [anon_sym_static] = ACTIONS(461), + [anon_sym_auto] = ACTIONS(461), + [anon_sym_register] = ACTIONS(461), + [anon_sym_const] = ACTIONS(461), + [anon_sym_restrict] = ACTIONS(461), + [anon_sym_volatile] = ACTIONS(461), + [sym_function_specifier] = ACTIONS(461), + [anon_sym_unsigned] = ACTIONS(461), + [anon_sym_long] = ACTIONS(461), + [anon_sym_short] = ACTIONS(461), + [anon_sym_enum] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(461), + [anon_sym_union] = ACTIONS(461), + [sym_identifier] = ACTIONS(465), [sym_comment] = ACTIONS(121), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(596), - [sym_preproc_directive] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_auto] = ACTIONS(596), - [anon_sym_register] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_restrict] = ACTIONS(596), - [anon_sym_volatile] = ACTIONS(596), - [sym_function_specifier] = ACTIONS(596), - [anon_sym_unsigned] = ACTIONS(596), - [anon_sym_long] = ACTIONS(596), - [anon_sym_short] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_if] = ACTIONS(596), - [anon_sym_else] = ACTIONS(596), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_do] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(594), - [anon_sym_PLUS_PLUS] = ACTIONS(594), - [anon_sym_sizeof] = ACTIONS(596), - [sym_number_literal] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [sym_string_literal] = ACTIONS(594), - [sym_identifier] = ACTIONS(598), + [sym__declaration_specifiers] = STATE(72), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_field_declaration] = STATE(121), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [75] = { - [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_extern] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_RBRACK] = ACTIONS(469), + [anon_sym_typedef] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_auto] = ACTIONS(471), + [anon_sym_register] = ACTIONS(471), + [anon_sym_const] = ACTIONS(471), + [anon_sym_restrict] = ACTIONS(471), + [anon_sym_volatile] = ACTIONS(471), + [sym_function_specifier] = ACTIONS(471), + [anon_sym_COLON] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_TILDE] = ACTIONS(469), + [anon_sym_PLUS] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(469), + [anon_sym_sizeof] = ACTIONS(471), + [sym_number_literal] = ACTIONS(471), + [sym_char_literal] = ACTIONS(471), + [sym_string_literal] = ACTIONS(469), + [sym_identifier] = ACTIONS(473), [sym_comment] = ACTIONS(121), }, [76] = { - [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_extern] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(475), + [anon_sym_typedef] = ACTIONS(477), + [anon_sym_static] = ACTIONS(477), + [anon_sym_auto] = ACTIONS(477), + [anon_sym_register] = ACTIONS(477), + [anon_sym_const] = ACTIONS(477), + [anon_sym_restrict] = ACTIONS(477), + [anon_sym_volatile] = ACTIONS(477), + [sym_function_specifier] = ACTIONS(477), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_sizeof] = ACTIONS(477), + [sym_number_literal] = ACTIONS(477), + [sym_char_literal] = ACTIONS(477), + [sym_string_literal] = ACTIONS(475), + [sym_identifier] = ACTIONS(479), [sym_comment] = ACTIONS(121), }, [77] = { - [sym__expression] = STATE(226), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_const] = ACTIONS(481), + [anon_sym_restrict] = ACTIONS(481), + [anon_sym_volatile] = ACTIONS(481), + [anon_sym_unsigned] = ACTIONS(481), + [anon_sym_long] = ACTIONS(481), + [anon_sym_short] = ACTIONS(481), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_struct] = ACTIONS(481), + [anon_sym_union] = ACTIONS(481), + [sym_identifier] = ACTIONS(483), [sym_comment] = ACTIONS(121), }, [78] = { - [anon_sym_COLON] = ACTIONS(604), + [sym__abstract_declarator] = STATE(125), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_abstract_function_declarator] = STATE(126), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), [sym_comment] = ACTIONS(121), }, [79] = { - [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(493), [sym_comment] = ACTIONS(121), }, [80] = { - [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(244), + [anon_sym_RPAREN] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(244), + [anon_sym_LBRACK] = ACTIONS(244), + [anon_sym_unsigned] = ACTIONS(248), + [anon_sym_long] = ACTIONS(248), + [anon_sym_short] = ACTIONS(248), + [sym_identifier] = ACTIONS(495), [sym_comment] = ACTIONS(121), }, [81] = { - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_type_qualifier] = STATE(129), + [sym__type_specifier] = STATE(130), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [82] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), + [sym__declarator] = STATE(84), [sym_pointer_declarator] = STATE(44), [sym_function_declarator] = STATE(44), [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(323), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [83] = { - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_parameter_list] = STATE(92), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(341), [sym_comment] = ACTIONS(121), }, [84] = { - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_RPAREN] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(614), + [sym_parameter_list] = STATE(92), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(499), + [anon_sym_RPAREN] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(499), [sym_comment] = ACTIONS(121), }, [85] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(616), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_COLON] = ACTIONS(616), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__declaration_specifiers] = STATE(134), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_declaration] = STATE(132), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [86] = { - [sym_enumerator] = STATE(235), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(622), - [sym_identifier] = ACTIONS(624), + [sym__declarator] = STATE(136), + [sym_pointer_declarator] = STATE(44), + [sym_function_declarator] = STATE(44), + [sym_array_declarator] = STATE(44), + [sym_init_declarator] = STATE(137), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(505), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [87] = { - [sym_enumerator_list] = STATE(236), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(626), - [anon_sym_typedef] = ACTIONS(628), - [anon_sym_static] = ACTIONS(628), - [anon_sym_auto] = ACTIONS(628), - [anon_sym_register] = ACTIONS(628), - [anon_sym_const] = ACTIONS(628), - [anon_sym_restrict] = ACTIONS(628), - [anon_sym_volatile] = ACTIONS(628), - [sym_function_specifier] = ACTIONS(628), - [anon_sym_COLON] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_PLUS] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_DASH_DASH] = ACTIONS(626), - [anon_sym_PLUS_PLUS] = ACTIONS(626), - [anon_sym_sizeof] = ACTIONS(628), - [sym_number_literal] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [sym_string_literal] = ACTIONS(626), - [sym_identifier] = ACTIONS(630), + [ts_builtin_sym_end] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [sym__pound_include] = ACTIONS(509), + [sym__pound_define] = ACTIONS(509), + [sym__pound_if] = ACTIONS(509), + [sym__pound_ifdef] = ACTIONS(509), + [sym__pound_endif] = ACTIONS(509), + [sym__pound_else] = ACTIONS(509), + [sym_preproc_directive] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_typedef] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_auto] = ACTIONS(509), + [anon_sym_register] = ACTIONS(509), + [anon_sym_const] = ACTIONS(509), + [anon_sym_restrict] = ACTIONS(509), + [anon_sym_volatile] = ACTIONS(509), + [sym_function_specifier] = ACTIONS(509), + [anon_sym_unsigned] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_union] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_do] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_return] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_goto] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(509), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_sizeof] = ACTIONS(509), + [sym_number_literal] = ACTIONS(509), + [sym_char_literal] = ACTIONS(509), + [sym_string_literal] = ACTIONS(507), + [sym_identifier] = ACTIONS(511), [sym_comment] = ACTIONS(121), }, [88] = { - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_RBRACK] = ACTIONS(632), - [anon_sym_typedef] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_auto] = ACTIONS(634), - [anon_sym_register] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_restrict] = ACTIONS(634), - [anon_sym_volatile] = ACTIONS(634), - [sym_function_specifier] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_DASH_DASH] = ACTIONS(632), - [anon_sym_PLUS_PLUS] = ACTIONS(632), - [anon_sym_sizeof] = ACTIONS(634), - [sym_number_literal] = ACTIONS(634), - [sym_char_literal] = ACTIONS(634), - [sym_string_literal] = ACTIONS(632), - [sym_identifier] = ACTIONS(636), + [sym_preproc_include] = STATE(162), + [sym_preproc_def] = STATE(162), + [sym_preproc_function_def] = STATE(162), + [sym_preproc_call] = STATE(162), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_declaration] = STATE(162), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(162), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(168), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(121), }, [89] = { - [sym__declaration_specifiers] = STATE(243), - [sym__field_declarator] = STATE(244), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_field_declaration] = STATE(248), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_field_declaration_list_repeat1] = STATE(249), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_COLON] = ACTIONS(646), - [sym_identifier] = ACTIONS(648), + [sym__declaration_specifiers] = STATE(177), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(178), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(567), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(579), [sym_comment] = ACTIONS(121), }, [90] = { - [sym_field_declaration_list] = STATE(250), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_RBRACK] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_static] = ACTIONS(652), - [anon_sym_auto] = ACTIONS(652), - [anon_sym_register] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_restrict] = ACTIONS(652), - [anon_sym_volatile] = ACTIONS(652), - [sym_function_specifier] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_sizeof] = ACTIONS(652), - [sym_number_literal] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [sym_string_literal] = ACTIONS(650), - [sym_identifier] = ACTIONS(654), + [sym__expression] = STATE(181), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(182), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [91] = { - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_RBRACK] = ACTIONS(656), - [anon_sym_typedef] = ACTIONS(658), - [anon_sym_static] = ACTIONS(658), - [anon_sym_auto] = ACTIONS(658), - [anon_sym_register] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_restrict] = ACTIONS(658), - [anon_sym_volatile] = ACTIONS(658), - [sym_function_specifier] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_TILDE] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_sizeof] = ACTIONS(658), - [sym_number_literal] = ACTIONS(658), - [sym_char_literal] = ACTIONS(658), - [sym_string_literal] = ACTIONS(656), - [sym_identifier] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(585), + [sym__pound_include] = ACTIONS(587), + [sym__pound_define] = ACTIONS(587), + [sym__pound_if] = ACTIONS(587), + [sym__pound_ifdef] = ACTIONS(587), + [sym__pound_endif] = ACTIONS(587), + [sym__pound_else] = ACTIONS(587), + [sym_preproc_directive] = ACTIONS(589), + [anon_sym_extern] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_typedef] = ACTIONS(587), + [anon_sym_static] = ACTIONS(587), + [anon_sym_auto] = ACTIONS(587), + [anon_sym_register] = ACTIONS(587), + [anon_sym_const] = ACTIONS(587), + [anon_sym_restrict] = ACTIONS(587), + [anon_sym_volatile] = ACTIONS(587), + [sym_function_specifier] = ACTIONS(587), + [anon_sym_unsigned] = ACTIONS(587), + [anon_sym_long] = ACTIONS(587), + [anon_sym_short] = ACTIONS(587), + [anon_sym_enum] = ACTIONS(587), + [anon_sym_struct] = ACTIONS(587), + [anon_sym_union] = ACTIONS(587), + [sym_identifier] = ACTIONS(589), [sym_comment] = ACTIONS(121), }, [92] = { - [sym_field_declaration_list] = STATE(251), - [anon_sym_LPAREN] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_RBRACK] = ACTIONS(662), - [anon_sym_typedef] = ACTIONS(664), - [anon_sym_static] = ACTIONS(664), - [anon_sym_auto] = ACTIONS(664), - [anon_sym_register] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_restrict] = ACTIONS(664), - [anon_sym_volatile] = ACTIONS(664), - [sym_function_specifier] = ACTIONS(664), - [anon_sym_COLON] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_BANG] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(664), - [anon_sym_DASH_DASH] = ACTIONS(662), - [anon_sym_PLUS_PLUS] = ACTIONS(662), - [anon_sym_sizeof] = ACTIONS(664), - [sym_number_literal] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [sym_string_literal] = ACTIONS(662), - [sym_identifier] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_EQ] = ACTIONS(591), [sym_comment] = ACTIONS(121), }, [93] = { - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_SEMI] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_RBRACK] = ACTIONS(668), - [anon_sym_typedef] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_auto] = ACTIONS(670), - [anon_sym_register] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_restrict] = ACTIONS(670), - [anon_sym_volatile] = ACTIONS(670), - [sym_function_specifier] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(668), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(668), - [anon_sym_sizeof] = ACTIONS(670), - [sym_number_literal] = ACTIONS(670), - [sym_char_literal] = ACTIONS(670), - [sym_string_literal] = ACTIONS(668), - [sym_identifier] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(595), [sym_comment] = ACTIONS(121), }, [94] = { - [sym__expression] = STATE(258), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_storage_class_specifier] = STATE(48), + [sym_type_qualifier] = STATE(48), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(597), + [anon_sym_RBRACK] = ACTIONS(597), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_sizeof] = ACTIONS(599), + [sym_number_literal] = ACTIONS(599), + [sym_char_literal] = ACTIONS(599), + [sym_string_literal] = ACTIONS(597), + [sym_identifier] = ACTIONS(601), [sym_comment] = ACTIONS(121), }, [95] = { - [sym__expression] = STATE(259), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(603), + [sym_comment] = ACTIONS(161), }, [96] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(261), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [aux_sym_preproc_params_repeat1] = STATE(188), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RPAREN] = ACTIONS(607), [sym_comment] = ACTIONS(121), }, [97] = { - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(609), + [sym_preproc_arg] = ACTIONS(609), + [sym_comment] = ACTIONS(161), }, [98] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(611), + [sym__pound_include] = ACTIONS(613), + [sym__pound_define] = ACTIONS(613), + [sym__pound_if] = ACTIONS(613), + [sym__pound_ifdef] = ACTIONS(613), + [sym__pound_endif] = ACTIONS(613), + [sym__pound_else] = ACTIONS(613), + [sym_preproc_directive] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_extern] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(611), + [anon_sym_typedef] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_auto] = ACTIONS(613), + [anon_sym_register] = ACTIONS(613), + [anon_sym_const] = ACTIONS(613), + [anon_sym_restrict] = ACTIONS(613), + [anon_sym_volatile] = ACTIONS(613), + [sym_function_specifier] = ACTIONS(613), + [anon_sym_unsigned] = ACTIONS(613), + [anon_sym_long] = ACTIONS(613), + [anon_sym_short] = ACTIONS(613), + [anon_sym_enum] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(613), + [anon_sym_union] = ACTIONS(613), + [anon_sym_if] = ACTIONS(613), + [anon_sym_switch] = ACTIONS(613), + [anon_sym_case] = ACTIONS(613), + [anon_sym_default] = ACTIONS(613), + [anon_sym_while] = ACTIONS(613), + [anon_sym_do] = ACTIONS(613), + [anon_sym_for] = ACTIONS(613), + [anon_sym_return] = ACTIONS(613), + [anon_sym_break] = ACTIONS(613), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_sizeof] = ACTIONS(613), + [sym_number_literal] = ACTIONS(613), + [sym_char_literal] = ACTIONS(613), + [sym_string_literal] = ACTIONS(611), + [sym_identifier] = ACTIONS(615), [sym_comment] = ACTIONS(121), }, [99] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(161), }, [100] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(47), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym__pound_endif] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [101] = { - [sym__expression] = STATE(263), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(621), + [sym__pound_include] = ACTIONS(623), + [sym__pound_define] = ACTIONS(623), + [sym__pound_if] = ACTIONS(623), + [sym__pound_ifdef] = ACTIONS(623), + [sym__pound_endif] = ACTIONS(623), + [sym__pound_else] = ACTIONS(623), + [sym_preproc_directive] = ACTIONS(625), + [anon_sym_extern] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_typedef] = ACTIONS(623), + [anon_sym_static] = ACTIONS(623), + [anon_sym_auto] = ACTIONS(623), + [anon_sym_register] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_restrict] = ACTIONS(623), + [anon_sym_volatile] = ACTIONS(623), + [sym_function_specifier] = ACTIONS(623), + [anon_sym_unsigned] = ACTIONS(623), + [anon_sym_long] = ACTIONS(623), + [anon_sym_short] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(623), + [anon_sym_union] = ACTIONS(623), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(121), }, [102] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__pound_endif] = ACTIONS(627), [sym_comment] = ACTIONS(121), }, [103] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [ts_builtin_sym_end] = ACTIONS(629), + [sym__pound_include] = ACTIONS(631), + [sym__pound_define] = ACTIONS(631), + [sym__pound_if] = ACTIONS(631), + [sym__pound_ifdef] = ACTIONS(631), + [sym__pound_endif] = ACTIONS(631), + [sym__pound_else] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(633), + [anon_sym_extern] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_typedef] = ACTIONS(631), + [anon_sym_static] = ACTIONS(631), + [anon_sym_auto] = ACTIONS(631), + [anon_sym_register] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_restrict] = ACTIONS(631), + [anon_sym_volatile] = ACTIONS(631), + [sym_function_specifier] = ACTIONS(631), + [anon_sym_unsigned] = ACTIONS(631), + [anon_sym_long] = ACTIONS(631), + [anon_sym_short] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_union] = ACTIONS(631), + [sym_identifier] = ACTIONS(633), [sym_comment] = ACTIONS(121), }, [104] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(722), + [sym__pound_endif] = ACTIONS(635), [sym_comment] = ACTIONS(121), }, [105] = { - [sym__expression] = STATE(280), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(637), + [sym__pound_include] = ACTIONS(639), + [sym__pound_define] = ACTIONS(639), + [sym__pound_if] = ACTIONS(639), + [sym__pound_ifdef] = ACTIONS(639), + [sym__pound_endif] = ACTIONS(639), + [sym__pound_else] = ACTIONS(639), + [sym_preproc_directive] = ACTIONS(641), + [anon_sym_extern] = ACTIONS(639), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), + [anon_sym_static] = ACTIONS(639), + [anon_sym_auto] = ACTIONS(639), + [anon_sym_register] = ACTIONS(639), + [anon_sym_const] = ACTIONS(639), + [anon_sym_restrict] = ACTIONS(639), + [anon_sym_volatile] = ACTIONS(639), + [sym_function_specifier] = ACTIONS(639), + [anon_sym_unsigned] = ACTIONS(639), + [anon_sym_long] = ACTIONS(639), + [anon_sym_short] = ACTIONS(639), + [anon_sym_enum] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(639), + [anon_sym_union] = ACTIONS(639), + [sym_identifier] = ACTIONS(641), [sym_comment] = ACTIONS(121), }, [106] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(67), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(47), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [107] = { - [anon_sym_LPAREN] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_extern] = ACTIONS(647), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_RBRACK] = ACTIONS(645), + [anon_sym_typedef] = ACTIONS(647), + [anon_sym_static] = ACTIONS(647), + [anon_sym_auto] = ACTIONS(647), + [anon_sym_register] = ACTIONS(647), + [anon_sym_const] = ACTIONS(647), + [anon_sym_restrict] = ACTIONS(647), + [anon_sym_volatile] = ACTIONS(647), + [sym_function_specifier] = ACTIONS(647), + [anon_sym_COLON] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_TILDE] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_sizeof] = ACTIONS(647), + [sym_number_literal] = ACTIONS(647), + [sym_char_literal] = ACTIONS(647), + [sym_string_literal] = ACTIONS(645), + [sym_identifier] = ACTIONS(649), [sym_comment] = ACTIONS(121), }, [108] = { - [anon_sym_LPAREN] = ACTIONS(726), + [sym__expression] = STATE(199), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [109] = { - [sym__expression] = STATE(283), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_enumerator] = STATE(201), + [anon_sym_RBRACE] = ACTIONS(665), + [sym_identifier] = ACTIONS(283), [sym_comment] = ACTIONS(121), }, [110] = { - [anon_sym_COLON] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(667), + [anon_sym_RBRACE] = ACTIONS(665), [sym_comment] = ACTIONS(121), }, [111] = { - [anon_sym_LPAREN] = ACTIONS(730), + [sym__field_declarator] = STATE(204), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_field_declarator] = STATE(118), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(669), + [sym_identifier] = ACTIONS(459), [sym_comment] = ACTIONS(121), }, [112] = { - [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_extern] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_typedef] = ACTIONS(671), + [anon_sym_static] = ACTIONS(671), + [anon_sym_auto] = ACTIONS(671), + [anon_sym_register] = ACTIONS(671), + [anon_sym_const] = ACTIONS(671), + [anon_sym_restrict] = ACTIONS(671), + [anon_sym_volatile] = ACTIONS(671), + [sym_function_specifier] = ACTIONS(671), + [anon_sym_unsigned] = ACTIONS(671), + [anon_sym_long] = ACTIONS(671), + [anon_sym_short] = ACTIONS(671), + [anon_sym_enum] = ACTIONS(671), + [anon_sym_struct] = ACTIONS(671), + [anon_sym_union] = ACTIONS(671), + [sym_identifier] = ACTIONS(675), [sym_comment] = ACTIONS(121), }, [113] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__field_declarator] = STATE(205), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_field_declarator] = STATE(118), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(455), + [sym_identifier] = ACTIONS(459), [sym_comment] = ACTIONS(121), }, [114] = { - [anon_sym_while] = ACTIONS(736), + [sym__expression] = STATE(212), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [115] = { - [sym_declaration] = STATE(289), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(291), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_COLON] = ACTIONS(691), [sym_comment] = ACTIONS(121), }, [116] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(292), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_parameter_list] = STATE(217), + [aux_sym_field_declaration_repeat1] = STATE(218), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(699), [sym_comment] = ACTIONS(121), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(742), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(742), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(744), - [sym_preproc_directive] = ACTIONS(746), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_extern] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_typedef] = ACTIONS(744), - [anon_sym_static] = ACTIONS(744), - [anon_sym_auto] = ACTIONS(744), - [anon_sym_register] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_restrict] = ACTIONS(744), - [anon_sym_volatile] = ACTIONS(744), - [sym_function_specifier] = ACTIONS(744), - [anon_sym_unsigned] = ACTIONS(744), - [anon_sym_long] = ACTIONS(744), - [anon_sym_short] = ACTIONS(744), - [anon_sym_enum] = ACTIONS(744), - [anon_sym_struct] = ACTIONS(744), - [anon_sym_union] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_else] = ACTIONS(744), - [anon_sym_switch] = ACTIONS(744), - [anon_sym_case] = ACTIONS(744), - [anon_sym_default] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_goto] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(742), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_sizeof] = ACTIONS(744), - [sym_number_literal] = ACTIONS(744), - [sym_char_literal] = ACTIONS(744), - [sym_string_literal] = ACTIONS(742), - [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(701), + [anon_sym_COMMA] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(701), + [anon_sym_COLON] = ACTIONS(701), [sym_comment] = ACTIONS(121), }, [118] = { - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_COLON] = ACTIONS(703), [sym_comment] = ACTIONS(121), }, [119] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), [sym_comment] = ACTIONS(121), }, [120] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_extern] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(707), + [anon_sym_typedef] = ACTIONS(709), + [anon_sym_static] = ACTIONS(709), + [anon_sym_auto] = ACTIONS(709), + [anon_sym_register] = ACTIONS(709), + [anon_sym_const] = ACTIONS(709), + [anon_sym_restrict] = ACTIONS(709), + [anon_sym_volatile] = ACTIONS(709), + [sym_function_specifier] = ACTIONS(709), + [anon_sym_COLON] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_sizeof] = ACTIONS(709), + [sym_number_literal] = ACTIONS(709), + [sym_char_literal] = ACTIONS(709), + [sym_string_literal] = ACTIONS(707), + [sym_identifier] = ACTIONS(711), [sym_comment] = ACTIONS(121), }, [121] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_typedef] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_auto] = ACTIONS(713), + [anon_sym_register] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_restrict] = ACTIONS(713), + [anon_sym_volatile] = ACTIONS(713), + [sym_function_specifier] = ACTIONS(713), + [anon_sym_unsigned] = ACTIONS(713), + [anon_sym_long] = ACTIONS(713), + [anon_sym_short] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [sym_identifier] = ACTIONS(717), [sym_comment] = ACTIONS(121), }, [122] = { - [sym__expression] = STATE(294), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declaration_specifiers] = STATE(134), + [sym__abstract_declarator] = STATE(219), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_abstract_function_declarator] = STATE(126), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_list] = STATE(127), + [sym_parameter_declaration] = STATE(132), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [123] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__abstract_declarator] = STATE(220), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_abstract_function_declarator] = STATE(126), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), [sym_comment] = ACTIONS(121), }, [124] = { - [ts_builtin_sym_end] = ACTIONS(780), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(780), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(782), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(782), - [sym_preproc_directive] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_typedef] = ACTIONS(782), - [anon_sym_static] = ACTIONS(782), - [anon_sym_auto] = ACTIONS(782), - [anon_sym_register] = ACTIONS(782), - [anon_sym_const] = ACTIONS(782), - [anon_sym_restrict] = ACTIONS(782), - [anon_sym_volatile] = ACTIONS(782), - [sym_function_specifier] = ACTIONS(782), - [anon_sym_unsigned] = ACTIONS(782), - [anon_sym_long] = ACTIONS(782), - [anon_sym_short] = ACTIONS(782), - [anon_sym_enum] = ACTIONS(782), - [anon_sym_struct] = ACTIONS(782), - [anon_sym_union] = ACTIONS(782), - [anon_sym_if] = ACTIONS(782), - [anon_sym_else] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_case] = ACTIONS(782), - [anon_sym_default] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_break] = ACTIONS(782), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_goto] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(780), - [anon_sym_PLUS_PLUS] = ACTIONS(780), - [anon_sym_sizeof] = ACTIONS(782), - [sym_number_literal] = ACTIONS(782), - [sym_char_literal] = ACTIONS(782), - [sym_string_literal] = ACTIONS(780), - [sym_identifier] = ACTIONS(784), + [sym__declaration_specifiers] = STATE(222), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(223), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(579), [sym_comment] = ACTIONS(121), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(786), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(788), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(786), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(788), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(788), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(788), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(788), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(788), - [sym_preproc_directive] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(786), - [anon_sym_RBRACE] = ACTIONS(786), - [anon_sym_STAR] = ACTIONS(786), - [anon_sym_typedef] = ACTIONS(788), - [anon_sym_static] = ACTIONS(788), - [anon_sym_auto] = ACTIONS(788), - [anon_sym_register] = ACTIONS(788), - [anon_sym_const] = ACTIONS(788), - [anon_sym_restrict] = ACTIONS(788), - [anon_sym_volatile] = ACTIONS(788), - [sym_function_specifier] = ACTIONS(788), - [anon_sym_unsigned] = ACTIONS(788), - [anon_sym_long] = ACTIONS(788), - [anon_sym_short] = ACTIONS(788), - [anon_sym_enum] = ACTIONS(788), - [anon_sym_struct] = ACTIONS(788), - [anon_sym_union] = ACTIONS(788), - [anon_sym_if] = ACTIONS(788), - [anon_sym_else] = ACTIONS(788), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_case] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(788), - [anon_sym_for] = ACTIONS(788), - [anon_sym_return] = ACTIONS(788), - [anon_sym_break] = ACTIONS(788), - [anon_sym_continue] = ACTIONS(788), - [anon_sym_goto] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(786), - [anon_sym_BANG] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(786), - [anon_sym_PLUS_PLUS] = ACTIONS(786), - [anon_sym_sizeof] = ACTIONS(788), - [sym_number_literal] = ACTIONS(788), - [sym_char_literal] = ACTIONS(788), - [sym_string_literal] = ACTIONS(786), - [sym_identifier] = ACTIONS(790), + [sym_parameter_list] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(725), [sym_comment] = ACTIONS(121), }, [126] = { - [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(727), [sym_comment] = ACTIONS(121), }, [127] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(794), - [anon_sym_EQ] = ACTIONS(796), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_STAR_EQ] = ACTIONS(794), - [anon_sym_SLASH_EQ] = ACTIONS(794), - [anon_sym_PERCENT_EQ] = ACTIONS(794), - [anon_sym_PLUS_EQ] = ACTIONS(794), - [anon_sym_DASH_EQ] = ACTIONS(794), - [anon_sym_LT_LT_EQ] = ACTIONS(794), - [anon_sym_GT_GT_EQ] = ACTIONS(794), - [anon_sym_AMP_EQ] = ACTIONS(794), - [anon_sym_CARET_EQ] = ACTIONS(794), - [anon_sym_PIPE_EQ] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_BANG_EQ] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_LT_EQ] = ACTIONS(794), - [anon_sym_GT_EQ] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_PERCENT] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(729), [sym_comment] = ACTIONS(121), }, [128] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(798), - [anon_sym_EQ] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(798), - [anon_sym_QMARK] = ACTIONS(798), - [anon_sym_STAR_EQ] = ACTIONS(798), - [anon_sym_SLASH_EQ] = ACTIONS(798), - [anon_sym_PERCENT_EQ] = ACTIONS(798), - [anon_sym_PLUS_EQ] = ACTIONS(798), - [anon_sym_DASH_EQ] = ACTIONS(798), - [anon_sym_LT_LT_EQ] = ACTIONS(798), - [anon_sym_GT_GT_EQ] = ACTIONS(798), - [anon_sym_AMP_EQ] = ACTIONS(798), - [anon_sym_CARET_EQ] = ACTIONS(798), - [anon_sym_PIPE_EQ] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(798), - [anon_sym_BANG_EQ] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(798), - [anon_sym_GT_EQ] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(800), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_PERCENT] = ACTIONS(800), - [anon_sym_DASH_DASH] = ACTIONS(798), - [anon_sym_PLUS_PLUS] = ACTIONS(798), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_extern] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_typedef] = ACTIONS(733), + [anon_sym_static] = ACTIONS(733), + [anon_sym_auto] = ACTIONS(733), + [anon_sym_register] = ACTIONS(733), + [anon_sym_const] = ACTIONS(733), + [anon_sym_restrict] = ACTIONS(733), + [anon_sym_volatile] = ACTIONS(733), + [sym_function_specifier] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_TILDE] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_sizeof] = ACTIONS(733), + [sym_number_literal] = ACTIONS(733), + [sym_char_literal] = ACTIONS(733), + [sym_string_literal] = ACTIONS(731), + [sym_identifier] = ACTIONS(735), [sym_comment] = ACTIONS(121), }, [129] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(802), - [anon_sym_EQ] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(802), - [anon_sym_QMARK] = ACTIONS(802), - [anon_sym_STAR_EQ] = ACTIONS(802), - [anon_sym_SLASH_EQ] = ACTIONS(802), - [anon_sym_PERCENT_EQ] = ACTIONS(802), - [anon_sym_PLUS_EQ] = ACTIONS(802), - [anon_sym_DASH_EQ] = ACTIONS(802), - [anon_sym_LT_LT_EQ] = ACTIONS(802), - [anon_sym_GT_GT_EQ] = ACTIONS(802), - [anon_sym_AMP_EQ] = ACTIONS(802), - [anon_sym_CARET_EQ] = ACTIONS(802), - [anon_sym_PIPE_EQ] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_CARET] = ACTIONS(804), - [anon_sym_EQ_EQ] = ACTIONS(802), - [anon_sym_BANG_EQ] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(804), - [anon_sym_GT] = ACTIONS(804), - [anon_sym_LT_EQ] = ACTIONS(802), - [anon_sym_GT_EQ] = ACTIONS(802), - [anon_sym_LT_LT] = ACTIONS(804), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_PLUS] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(804), - [anon_sym_SLASH] = ACTIONS(804), - [anon_sym_PERCENT] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_const] = ACTIONS(737), + [anon_sym_restrict] = ACTIONS(737), + [anon_sym_volatile] = ACTIONS(737), + [anon_sym_unsigned] = ACTIONS(737), + [anon_sym_long] = ACTIONS(737), + [anon_sym_short] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(737), + [anon_sym_struct] = ACTIONS(737), + [anon_sym_union] = ACTIONS(737), + [sym_identifier] = ACTIONS(739), [sym_comment] = ACTIONS(121), }, [130] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(309), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym__abstract_declarator] = STATE(226), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_abstract_function_declarator] = STATE(126), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), [sym_comment] = ACTIONS(121), }, [131] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(741), [sym_comment] = ACTIONS(121), }, [132] = { - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_COMMA] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(812), - [anon_sym_COLON] = ACTIONS(810), - [anon_sym_QMARK] = ACTIONS(810), - [anon_sym_STAR_EQ] = ACTIONS(810), - [anon_sym_SLASH_EQ] = ACTIONS(810), - [anon_sym_PERCENT_EQ] = ACTIONS(810), - [anon_sym_PLUS_EQ] = ACTIONS(810), - [anon_sym_DASH_EQ] = ACTIONS(810), - [anon_sym_LT_LT_EQ] = ACTIONS(810), - [anon_sym_GT_GT_EQ] = ACTIONS(810), - [anon_sym_AMP_EQ] = ACTIONS(810), - [anon_sym_CARET_EQ] = ACTIONS(810), - [anon_sym_PIPE_EQ] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_CARET] = ACTIONS(812), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_GT] = ACTIONS(812), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_LT_LT] = ACTIONS(812), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_PLUS] = ACTIONS(812), - [anon_sym_DASH] = ACTIONS(812), - [anon_sym_SLASH] = ACTIONS(812), - [anon_sym_PERCENT] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DOT] = ACTIONS(810), - [anon_sym_DASH_GT] = ACTIONS(810), - [sym_string_literal] = ACTIONS(810), + [aux_sym_parameter_list_repeat1] = STATE(229), + [anon_sym_COMMA] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(745), [sym_comment] = ACTIONS(121), }, [133] = { - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(814), - [anon_sym_RBRACK] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(816), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_QMARK] = ACTIONS(814), - [anon_sym_STAR_EQ] = ACTIONS(814), - [anon_sym_SLASH_EQ] = ACTIONS(814), - [anon_sym_PERCENT_EQ] = ACTIONS(814), - [anon_sym_PLUS_EQ] = ACTIONS(814), - [anon_sym_DASH_EQ] = ACTIONS(814), - [anon_sym_LT_LT_EQ] = ACTIONS(814), - [anon_sym_GT_GT_EQ] = ACTIONS(814), - [anon_sym_AMP_EQ] = ACTIONS(814), - [anon_sym_CARET_EQ] = ACTIONS(814), - [anon_sym_PIPE_EQ] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [anon_sym_EQ_EQ] = ACTIONS(814), - [anon_sym_BANG_EQ] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(816), - [anon_sym_LT_EQ] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(816), - [anon_sym_PLUS] = ACTIONS(816), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(814), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_DASH_GT] = ACTIONS(814), - [sym_string_literal] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(747), + [anon_sym_EQ] = ACTIONS(747), + [anon_sym_COLON] = ACTIONS(747), [sym_comment] = ACTIONS(121), }, [134] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_type_descriptor] = STATE(311), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(479), + [sym__declarator] = STATE(232), + [sym__abstract_declarator] = STATE(233), + [sym_pointer_declarator] = STATE(44), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_COMMA] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(491), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [135] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), - [sym_comment] = ACTIONS(121), - }, - [136] = { - [sym__declarator] = STATE(62), + [sym__declarator] = STATE(84), [sym_pointer_declarator] = STATE(44), [sym_function_declarator] = STATE(44), [sym_array_declarator] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(822), - [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(505), + [sym_identifier] = ACTIONS(226), + [sym_comment] = ACTIONS(121), + }, + [136] = { + [sym_parameter_list] = STATE(92), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(343), [sym_comment] = ACTIONS(121), }, [137] = { - [ts_builtin_sym_end] = ACTIONS(824), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(824), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_typedef] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [anon_sym_register] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [anon_sym_volatile] = ACTIONS(826), - [sym_function_specifier] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(826), - [anon_sym_union] = ACTIONS(826), - [anon_sym_if] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_case] = ACTIONS(826), - [anon_sym_default] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_goto] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_sizeof] = ACTIONS(826), - [sym_number_literal] = ACTIONS(826), - [sym_char_literal] = ACTIONS(826), - [sym_string_literal] = ACTIONS(824), - [sym_identifier] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), [sym_comment] = ACTIONS(121), }, [138] = { - [sym__declarator] = STATE(84), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(243), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [139] = { - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(375), - [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [sym_comment] = ACTIONS(121), + [sym_preproc_arg] = ACTIONS(773), + [sym_comment] = ACTIONS(161), }, [140] = { - [sym_compound_statement] = STATE(318), - [sym_parameter_list] = STATE(145), - [aux_sym_declaration_repeat1] = STATE(319), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(834), + [sym_identifier] = ACTIONS(775), [sym_comment] = ACTIONS(121), }, [141] = { - [aux_sym_declaration_repeat1] = STATE(319), - [anon_sym_COMMA] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(777), + [sym__pound_include] = ACTIONS(779), + [sym__pound_define] = ACTIONS(779), + [sym__pound_if] = ACTIONS(779), + [sym__pound_ifdef] = ACTIONS(779), + [sym__pound_endif] = ACTIONS(779), + [sym__pound_else] = ACTIONS(779), + [sym_preproc_directive] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_extern] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(777), + [anon_sym_typedef] = ACTIONS(779), + [anon_sym_static] = ACTIONS(779), + [anon_sym_auto] = ACTIONS(779), + [anon_sym_register] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_restrict] = ACTIONS(779), + [anon_sym_volatile] = ACTIONS(779), + [sym_function_specifier] = ACTIONS(779), + [anon_sym_unsigned] = ACTIONS(779), + [anon_sym_long] = ACTIONS(779), + [anon_sym_short] = ACTIONS(779), + [anon_sym_enum] = ACTIONS(779), + [anon_sym_struct] = ACTIONS(779), + [anon_sym_union] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(779), + [anon_sym_switch] = ACTIONS(779), + [anon_sym_case] = ACTIONS(779), + [anon_sym_default] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_do] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_goto] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_sizeof] = ACTIONS(779), + [sym_number_literal] = ACTIONS(779), + [sym_char_literal] = ACTIONS(779), + [sym_string_literal] = ACTIONS(777), + [sym_identifier] = ACTIONS(781), [sym_comment] = ACTIONS(121), }, [142] = { - [sym__declaration_specifiers] = STATE(322), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_declaration] = STATE(320), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_DOT_DOT_DOT] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(479), + [ts_builtin_sym_end] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(783), + [sym__pound_include] = ACTIONS(785), + [sym__pound_define] = ACTIONS(785), + [sym__pound_if] = ACTIONS(785), + [sym__pound_ifdef] = ACTIONS(785), + [sym__pound_endif] = ACTIONS(785), + [sym__pound_else] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_extern] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_typedef] = ACTIONS(785), + [anon_sym_static] = ACTIONS(785), + [anon_sym_auto] = ACTIONS(785), + [anon_sym_register] = ACTIONS(785), + [anon_sym_const] = ACTIONS(785), + [anon_sym_restrict] = ACTIONS(785), + [anon_sym_volatile] = ACTIONS(785), + [sym_function_specifier] = ACTIONS(785), + [anon_sym_unsigned] = ACTIONS(785), + [anon_sym_long] = ACTIONS(785), + [anon_sym_short] = ACTIONS(785), + [anon_sym_enum] = ACTIONS(785), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_union] = ACTIONS(785), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_return] = ACTIONS(785), + [anon_sym_break] = ACTIONS(785), + [anon_sym_continue] = ACTIONS(785), + [anon_sym_goto] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(785), + [sym_string_literal] = ACTIONS(783), + [sym_identifier] = ACTIONS(787), [sym_comment] = ACTIONS(121), }, [143] = { - [sym__declaration_specifiers] = STATE(331), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(332), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(844), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(856), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [144] = { - [ts_builtin_sym_end] = ACTIONS(858), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(860), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(858), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(860), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(860), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(860), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(860), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(860), - [sym_preproc_directive] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_extern] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(858), - [anon_sym_typedef] = ACTIONS(860), - [anon_sym_static] = ACTIONS(860), - [anon_sym_auto] = ACTIONS(860), - [anon_sym_register] = ACTIONS(860), - [anon_sym_const] = ACTIONS(860), - [anon_sym_restrict] = ACTIONS(860), - [anon_sym_volatile] = ACTIONS(860), - [sym_function_specifier] = ACTIONS(860), - [anon_sym_unsigned] = ACTIONS(860), - [anon_sym_long] = ACTIONS(860), - [anon_sym_short] = ACTIONS(860), - [anon_sym_enum] = ACTIONS(860), - [anon_sym_struct] = ACTIONS(860), - [anon_sym_union] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_case] = ACTIONS(860), - [anon_sym_default] = ACTIONS(860), - [anon_sym_while] = ACTIONS(860), - [anon_sym_do] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_goto] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_DASH_DASH] = ACTIONS(858), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_sizeof] = ACTIONS(860), - [sym_number_literal] = ACTIONS(860), - [sym_char_literal] = ACTIONS(860), - [sym_string_literal] = ACTIONS(858), - [sym_identifier] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(789), [sym_comment] = ACTIONS(121), }, [145] = { - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(864), - [anon_sym_RPAREN] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(791), [sym_comment] = ACTIONS(121), }, [146] = { - [sym_storage_class_specifier] = STATE(167), - [sym_type_qualifier] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(866), - [anon_sym_COMMA] = ACTIONS(866), - [anon_sym_RPAREN] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(866), - [anon_sym_RBRACK] = ACTIONS(866), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(866), - [anon_sym_TILDE] = ACTIONS(866), - [anon_sym_PLUS] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_sizeof] = ACTIONS(868), - [sym_number_literal] = ACTIONS(868), - [sym_char_literal] = ACTIONS(868), - [sym_string_literal] = ACTIONS(866), - [sym_identifier] = ACTIONS(870), + [sym__expression] = STATE(255), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [147] = { - [sym__expression] = STATE(334), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COLON] = ACTIONS(807), [sym_comment] = ACTIONS(121), }, [148] = { - [sym__expression] = STATE(335), - [sym_comma_expression] = STATE(336), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(809), [sym_comment] = ACTIONS(121), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(874), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(874), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(876), - [sym_preproc_directive] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_typedef] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_auto] = ACTIONS(876), - [anon_sym_register] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_restrict] = ACTIONS(876), - [anon_sym_volatile] = ACTIONS(876), - [sym_function_specifier] = ACTIONS(876), - [anon_sym_unsigned] = ACTIONS(876), - [anon_sym_long] = ACTIONS(876), - [anon_sym_short] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(876), - [anon_sym_struct] = ACTIONS(876), - [anon_sym_union] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_switch] = ACTIONS(876), - [anon_sym_case] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_goto] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_sizeof] = ACTIONS(876), - [sym_number_literal] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [sym_string_literal] = ACTIONS(874), - [sym_identifier] = ACTIONS(878), + [sym_compound_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(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [150] = { - [sym__expression] = STATE(337), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(825), [sym_comment] = ACTIONS(121), }, [151] = { - [sym__expression] = STATE(338), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(268), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [152] = { - [sym__expression] = STATE(339), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(829), [sym_comment] = ACTIONS(121), }, [153] = { - [sym__expression] = STATE(340), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(831), [sym_comment] = ACTIONS(121), }, [154] = { - [sym__expression] = STATE(341), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_identifier] = ACTIONS(833), [sym_comment] = ACTIONS(121), }, [155] = { - [sym__expression] = STATE(342), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(272), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [156] = { - [sym__expression] = STATE(343), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [157] = { - [sym__expression] = STATE(344), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [158] = { - [sym__expression] = STATE(345), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(276), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [159] = { - [sym__expression] = STATE(346), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_STAR_EQ] = ACTIONS(837), + [anon_sym_SLASH_EQ] = ACTIONS(837), + [anon_sym_PERCENT_EQ] = ACTIONS(837), + [anon_sym_PLUS_EQ] = ACTIONS(837), + [anon_sym_DASH_EQ] = ACTIONS(837), + [anon_sym_LT_LT_EQ] = ACTIONS(837), + [anon_sym_GT_GT_EQ] = ACTIONS(837), + [anon_sym_AMP_EQ] = ACTIONS(837), + [anon_sym_CARET_EQ] = ACTIONS(837), + [anon_sym_PIPE_EQ] = ACTIONS(837), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_PIPE_PIPE] = ACTIONS(837), + [anon_sym_AMP_AMP] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_CARET] = ACTIONS(839), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_LT_LT] = ACTIONS(839), + [anon_sym_GT_GT] = ACTIONS(839), + [anon_sym_PLUS] = ACTIONS(839), + [anon_sym_DASH] = ACTIONS(839), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_PERCENT] = ACTIONS(839), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_DASH_GT] = ACTIONS(837), [sym_comment] = ACTIONS(121), }, [160] = { - [sym__expression] = STATE(347), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [aux_sym_concatenated_string_repeat1] = STATE(278), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_STAR_EQ] = ACTIONS(837), + [anon_sym_SLASH_EQ] = ACTIONS(837), + [anon_sym_PERCENT_EQ] = ACTIONS(837), + [anon_sym_PLUS_EQ] = ACTIONS(837), + [anon_sym_DASH_EQ] = ACTIONS(837), + [anon_sym_LT_LT_EQ] = ACTIONS(837), + [anon_sym_GT_GT_EQ] = ACTIONS(837), + [anon_sym_AMP_EQ] = ACTIONS(837), + [anon_sym_CARET_EQ] = ACTIONS(837), + [anon_sym_PIPE_EQ] = ACTIONS(837), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_PIPE_PIPE] = ACTIONS(837), + [anon_sym_AMP_AMP] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_CARET] = ACTIONS(839), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_LT_LT] = ACTIONS(839), + [anon_sym_GT_GT] = ACTIONS(839), + [anon_sym_PLUS] = ACTIONS(839), + [anon_sym_DASH] = ACTIONS(839), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_PERCENT] = ACTIONS(839), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_DASH_GT] = ACTIONS(837), + [sym_string_literal] = ACTIONS(841), [sym_comment] = ACTIONS(121), }, [161] = { - [sym__expression] = STATE(348), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [162] = { - [sym__expression] = STATE(349), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(859), + [sym__pound_include] = ACTIONS(861), + [sym__pound_define] = ACTIONS(861), + [sym__pound_if] = ACTIONS(861), + [sym__pound_ifdef] = ACTIONS(861), + [sym__pound_endif] = ACTIONS(861), + [sym__pound_else] = ACTIONS(861), + [sym_preproc_directive] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_typedef] = ACTIONS(861), + [anon_sym_static] = ACTIONS(861), + [anon_sym_auto] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_restrict] = ACTIONS(861), + [anon_sym_volatile] = ACTIONS(861), + [sym_function_specifier] = ACTIONS(861), + [anon_sym_unsigned] = ACTIONS(861), + [anon_sym_long] = ACTIONS(861), + [anon_sym_short] = ACTIONS(861), + [anon_sym_enum] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(861), + [anon_sym_union] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(861), + [anon_sym_case] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_goto] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_sizeof] = ACTIONS(861), + [sym_number_literal] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [sym_string_literal] = ACTIONS(859), + [sym_identifier] = ACTIONS(863), [sym_comment] = ACTIONS(121), }, [163] = { - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_STAR_EQ] = ACTIONS(880), - [anon_sym_SLASH_EQ] = ACTIONS(880), - [anon_sym_PERCENT_EQ] = ACTIONS(880), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), - [anon_sym_LT_LT_EQ] = ACTIONS(880), - [anon_sym_GT_GT_EQ] = ACTIONS(880), - [anon_sym_AMP_EQ] = ACTIONS(880), - [anon_sym_CARET_EQ] = ACTIONS(880), - [anon_sym_PIPE_EQ] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_CARET] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_PERCENT] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_DASH_GT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(865), + [sym__pound_include] = ACTIONS(867), + [sym__pound_define] = ACTIONS(867), + [sym__pound_if] = ACTIONS(867), + [sym__pound_ifdef] = ACTIONS(867), + [sym__pound_endif] = ACTIONS(867), + [sym__pound_else] = ACTIONS(867), + [sym_preproc_directive] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_extern] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_typedef] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_auto] = ACTIONS(867), + [anon_sym_register] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_restrict] = ACTIONS(867), + [anon_sym_volatile] = ACTIONS(867), + [sym_function_specifier] = ACTIONS(867), + [anon_sym_unsigned] = ACTIONS(867), + [anon_sym_long] = ACTIONS(867), + [anon_sym_short] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_case] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_goto] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(867), + [sym_char_literal] = ACTIONS(867), + [sym_string_literal] = ACTIONS(865), + [sym_identifier] = ACTIONS(869), [sym_comment] = ACTIONS(121), }, [164] = { - [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(871), + [sym__pound_include] = ACTIONS(873), + [sym__pound_define] = ACTIONS(873), + [sym__pound_if] = ACTIONS(873), + [sym__pound_ifdef] = ACTIONS(873), + [sym__pound_endif] = ACTIONS(873), + [sym__pound_else] = ACTIONS(873), + [sym_preproc_directive] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_extern] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_typedef] = ACTIONS(873), + [anon_sym_static] = ACTIONS(873), + [anon_sym_auto] = ACTIONS(873), + [anon_sym_register] = ACTIONS(873), + [anon_sym_const] = ACTIONS(873), + [anon_sym_restrict] = ACTIONS(873), + [anon_sym_volatile] = ACTIONS(873), + [sym_function_specifier] = ACTIONS(873), + [anon_sym_unsigned] = ACTIONS(873), + [anon_sym_long] = ACTIONS(873), + [anon_sym_short] = ACTIONS(873), + [anon_sym_enum] = ACTIONS(873), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_union] = ACTIONS(873), + [anon_sym_if] = ACTIONS(873), + [anon_sym_switch] = ACTIONS(873), + [anon_sym_case] = ACTIONS(873), + [anon_sym_default] = ACTIONS(873), + [anon_sym_while] = ACTIONS(873), + [anon_sym_do] = ACTIONS(873), + [anon_sym_for] = ACTIONS(873), + [anon_sym_return] = ACTIONS(873), + [anon_sym_break] = ACTIONS(873), + [anon_sym_continue] = ACTIONS(873), + [anon_sym_goto] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DASH_DASH] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(871), + [anon_sym_sizeof] = ACTIONS(873), + [sym_number_literal] = ACTIONS(873), + [sym_char_literal] = ACTIONS(873), + [sym_string_literal] = ACTIONS(871), + [sym_identifier] = ACTIONS(875), [sym_comment] = ACTIONS(121), }, [165] = { - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_COMMA] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_RBRACK] = ACTIONS(886), - [anon_sym_EQ] = ACTIONS(888), - [anon_sym_COLON] = ACTIONS(886), - [anon_sym_QMARK] = ACTIONS(886), - [anon_sym_STAR_EQ] = ACTIONS(886), - [anon_sym_SLASH_EQ] = ACTIONS(886), - [anon_sym_PERCENT_EQ] = ACTIONS(886), - [anon_sym_PLUS_EQ] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), - [anon_sym_LT_LT_EQ] = ACTIONS(886), - [anon_sym_GT_GT_EQ] = ACTIONS(886), - [anon_sym_AMP_EQ] = ACTIONS(886), - [anon_sym_CARET_EQ] = ACTIONS(886), - [anon_sym_PIPE_EQ] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_PIPE_PIPE] = ACTIONS(886), - [anon_sym_AMP_AMP] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(888), - [anon_sym_CARET] = ACTIONS(888), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(886), - [anon_sym_LT_LT] = ACTIONS(888), - [anon_sym_GT_GT] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_DASH_GT] = ACTIONS(886), + [sym__declarator] = STATE(280), + [sym_pointer_declarator] = STATE(44), + [sym_function_declarator] = STATE(44), + [sym_array_declarator] = STATE(44), + [sym_init_declarator] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(505), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [166] = { - [ts_builtin_sym_end] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(892), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(890), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(892), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(892), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(892), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(892), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(892), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_typedef] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_auto] = ACTIONS(892), - [anon_sym_register] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_restrict] = ACTIONS(892), - [anon_sym_volatile] = ACTIONS(892), - [sym_function_specifier] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_long] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_union] = ACTIONS(892), - [anon_sym_if] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(892), - [anon_sym_case] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_goto] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(890), - [anon_sym_TILDE] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_sizeof] = ACTIONS(892), - [sym_number_literal] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [sym_string_literal] = ACTIONS(890), - [sym_identifier] = ACTIONS(894), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(891), + [anon_sym_SLASH_EQ] = ACTIONS(891), + [anon_sym_PERCENT_EQ] = ACTIONS(891), + [anon_sym_PLUS_EQ] = ACTIONS(891), + [anon_sym_DASH_EQ] = ACTIONS(891), + [anon_sym_LT_LT_EQ] = ACTIONS(891), + [anon_sym_GT_GT_EQ] = ACTIONS(891), + [anon_sym_AMP_EQ] = ACTIONS(891), + [anon_sym_CARET_EQ] = ACTIONS(891), + [anon_sym_PIPE_EQ] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [167] = { - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [sym_function_specifier] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(898), - [sym_char_literal] = ACTIONS(898), - [sym_string_literal] = ACTIONS(896), - [sym_identifier] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(881), [sym_comment] = ACTIONS(121), - }, - [168] = { - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(905), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_DASH_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(905), - [anon_sym_sizeof] = ACTIONS(373), - [sym_number_literal] = ACTIONS(373), - [sym_char_literal] = ACTIONS(373), - [sym_string_literal] = ACTIONS(905), - [sym_identifier] = ACTIONS(387), + }, + [168] = { + [sym_preproc_include] = STATE(301), + [sym_preproc_def] = STATE(301), + [sym_preproc_function_def] = STATE(301), + [sym_preproc_call] = STATE(301), + [sym_preproc_if_in_compound_statement] = STATE(302), + [sym_preproc_ifdef_in_compound_statement] = STATE(303), + [sym_declaration] = STATE(301), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(301), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(301), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(121), }, [169] = { - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(351), - [anon_sym_LPAREN] = ACTIONS(866), - [anon_sym_COMMA] = ACTIONS(866), - [anon_sym_RPAREN] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(866), - [anon_sym_RBRACK] = ACTIONS(866), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(866), - [anon_sym_TILDE] = ACTIONS(866), - [anon_sym_PLUS] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_sizeof] = ACTIONS(868), - [sym_number_literal] = ACTIONS(868), - [sym_char_literal] = ACTIONS(868), - [sym_string_literal] = ACTIONS(866), - [sym_identifier] = ACTIONS(870), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(304), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [170] = { - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_typedef] = ACTIONS(909), - [anon_sym_static] = ACTIONS(909), - [anon_sym_auto] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_restrict] = ACTIONS(909), - [anon_sym_volatile] = ACTIONS(909), - [sym_function_specifier] = ACTIONS(909), - [anon_sym_unsigned] = ACTIONS(909), - [anon_sym_long] = ACTIONS(909), - [anon_sym_short] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_sizeof] = ACTIONS(909), - [sym_number_literal] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [sym_string_literal] = ACTIONS(907), - [sym_identifier] = ACTIONS(911), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [171] = { - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_typedef] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_auto] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_restrict] = ACTIONS(915), - [anon_sym_volatile] = ACTIONS(915), - [sym_function_specifier] = ACTIONS(915), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_sizeof] = ACTIONS(915), - [sym_number_literal] = ACTIONS(915), - [sym_char_literal] = ACTIONS(915), - [sym_string_literal] = ACTIONS(913), - [sym_identifier] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_RPAREN] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), [sym_comment] = ACTIONS(121), }, [172] = { - [sym_preproc_arg] = ACTIONS(919), - [sym_comment] = ACTIONS(225), + [sym__expression] = STATE(272), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), + [sym_comment] = ACTIONS(121), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(921), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(923), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(921), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(923), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(923), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(923), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(923), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_typedef] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_auto] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_restrict] = ACTIONS(923), - [anon_sym_volatile] = ACTIONS(923), - [sym_function_specifier] = ACTIONS(923), - [anon_sym_unsigned] = ACTIONS(923), - [anon_sym_long] = ACTIONS(923), - [anon_sym_short] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(923), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_goto] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(921), - [anon_sym_TILDE] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_sizeof] = ACTIONS(923), - [sym_number_literal] = ACTIONS(923), - [sym_char_literal] = ACTIONS(923), - [sym_string_literal] = ACTIONS(921), - [sym_identifier] = ACTIONS(925), + [sym__expression] = STATE(273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [174] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(929), - [sym_identifier] = ACTIONS(931), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [175] = { - [anon_sym_LF] = ACTIONS(933), - [sym_preproc_arg] = ACTIONS(935), - [sym_comment] = ACTIONS(225), + [sym__expression] = STATE(306), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), + [sym_comment] = ACTIONS(121), }, [176] = { - [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(208), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(206), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_sizeof] = ACTIONS(208), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_number_literal] = ACTIONS(208), + [sym_char_literal] = ACTIONS(208), + [sym_string_literal] = ACTIONS(206), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [177] = { - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__expression] = STATE(308), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [178] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(176), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [179] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(358), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym__expression] = STATE(324), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(325), + [sym__initializer_list_contents] = STATE(326), + [sym_designator] = STATE(327), + [sym_concatenated_string] = STATE(159), + [aux_sym__initializer_list_contents_repeat1] = STATE(328), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(957), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [180] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [181] = { - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(939), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(891), + [anon_sym_SLASH_EQ] = ACTIONS(891), + [anon_sym_PERCENT_EQ] = ACTIONS(891), + [anon_sym_PLUS_EQ] = ACTIONS(891), + [anon_sym_DASH_EQ] = ACTIONS(891), + [anon_sym_LT_LT_EQ] = ACTIONS(891), + [anon_sym_GT_GT_EQ] = ACTIONS(891), + [anon_sym_AMP_EQ] = ACTIONS(891), + [anon_sym_CARET_EQ] = ACTIONS(891), + [anon_sym_PIPE_EQ] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [182] = { - [sym__declaration_specifiers] = STATE(322), - [sym__abstract_declarator] = STATE(359), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_abstract_function_declarator] = STATE(186), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_list] = STATE(187), - [sym_parameter_declaration] = STATE(320), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(479), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), [sym_comment] = ACTIONS(121), }, [183] = { - [sym__abstract_declarator] = STATE(360), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_abstract_function_declarator] = STATE(186), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), + [sym__declarator] = STATE(329), + [sym_pointer_declarator] = STATE(44), + [sym_function_declarator] = STATE(44), + [sym_array_declarator] = STATE(44), + [sym_init_declarator] = STATE(330), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(505), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [184] = { - [sym__declaration_specifiers] = STATE(362), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(363), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(943), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(856), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [sym__pound_include] = ACTIONS(963), + [sym__pound_define] = ACTIONS(963), + [sym__pound_if] = ACTIONS(963), + [sym__pound_ifdef] = ACTIONS(963), + [sym__pound_endif] = ACTIONS(963), + [sym__pound_else] = ACTIONS(963), + [sym_preproc_directive] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_typedef] = ACTIONS(963), + [anon_sym_static] = ACTIONS(963), + [anon_sym_auto] = ACTIONS(963), + [anon_sym_register] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_restrict] = ACTIONS(963), + [anon_sym_volatile] = ACTIONS(963), + [sym_function_specifier] = ACTIONS(963), + [anon_sym_unsigned] = ACTIONS(963), + [anon_sym_long] = ACTIONS(963), + [anon_sym_short] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_else] = ACTIONS(963), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_case] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [anon_sym_do] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_goto] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_sizeof] = ACTIONS(963), + [sym_number_literal] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [sym_string_literal] = ACTIONS(961), + [sym_identifier] = ACTIONS(965), [sym_comment] = ACTIONS(121), }, [185] = { - [sym_parameter_list] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [ts_builtin_sym_end] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [sym__pound_include] = ACTIONS(969), + [sym__pound_define] = ACTIONS(969), + [sym__pound_if] = ACTIONS(969), + [sym__pound_ifdef] = ACTIONS(969), + [sym__pound_endif] = ACTIONS(969), + [sym__pound_else] = ACTIONS(969), + [sym_preproc_directive] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_typedef] = ACTIONS(969), + [anon_sym_static] = ACTIONS(969), + [anon_sym_auto] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_restrict] = ACTIONS(969), + [anon_sym_volatile] = ACTIONS(969), + [sym_function_specifier] = ACTIONS(969), + [anon_sym_unsigned] = ACTIONS(969), + [anon_sym_long] = ACTIONS(969), + [anon_sym_short] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_switch] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_goto] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_sizeof] = ACTIONS(969), + [sym_number_literal] = ACTIONS(969), + [sym_char_literal] = ACTIONS(969), + [sym_string_literal] = ACTIONS(967), + [sym_identifier] = ACTIONS(971), [sym_comment] = ACTIONS(121), }, [186] = { - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(973), + [sym_identifier] = ACTIONS(975), [sym_comment] = ACTIONS(121), }, [187] = { - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(977), + [sym_preproc_arg] = ACTIONS(977), + [sym_comment] = ACTIONS(161), }, [188] = { - [sym__expression] = STATE(366), - [sym_comma_expression] = STATE(336), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(981), [sym_comment] = ACTIONS(121), }, [189] = { - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), + [ts_builtin_sym_end] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [sym__pound_include] = ACTIONS(985), + [sym__pound_define] = ACTIONS(985), + [sym__pound_if] = ACTIONS(985), + [sym__pound_ifdef] = ACTIONS(985), + [sym__pound_endif] = ACTIONS(985), + [sym__pound_else] = ACTIONS(985), + [sym_preproc_directive] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_typedef] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_auto] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_restrict] = ACTIONS(985), + [anon_sym_volatile] = ACTIONS(985), + [sym_function_specifier] = ACTIONS(985), + [anon_sym_unsigned] = ACTIONS(985), + [anon_sym_long] = ACTIONS(985), + [anon_sym_short] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_case] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_goto] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(985), + [sym_number_literal] = ACTIONS(985), + [sym_char_literal] = ACTIONS(985), + [sym_string_literal] = ACTIONS(983), + [sym_identifier] = ACTIONS(987), [sym_comment] = ACTIONS(121), }, [190] = { - [sym__expression] = STATE(337), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(989), + [sym__pound_include] = ACTIONS(991), + [sym__pound_define] = ACTIONS(991), + [sym__pound_if] = ACTIONS(991), + [sym__pound_ifdef] = ACTIONS(991), + [sym__pound_endif] = ACTIONS(991), + [sym__pound_else] = ACTIONS(991), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_typedef] = ACTIONS(991), + [anon_sym_static] = ACTIONS(991), + [anon_sym_auto] = ACTIONS(991), + [anon_sym_register] = ACTIONS(991), + [anon_sym_const] = ACTIONS(991), + [anon_sym_restrict] = ACTIONS(991), + [anon_sym_volatile] = ACTIONS(991), + [sym_function_specifier] = ACTIONS(991), + [anon_sym_unsigned] = ACTIONS(991), + [anon_sym_long] = ACTIONS(991), + [anon_sym_short] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(991), + [anon_sym_struct] = ACTIONS(991), + [anon_sym_union] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), [sym_comment] = ACTIONS(121), }, [191] = { - [sym__expression] = STATE(367), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(995), + [sym__pound_include] = ACTIONS(997), + [sym__pound_define] = ACTIONS(997), + [sym__pound_if] = ACTIONS(997), + [sym__pound_ifdef] = ACTIONS(997), + [sym__pound_endif] = ACTIONS(997), + [sym__pound_else] = ACTIONS(997), + [sym_preproc_directive] = ACTIONS(999), + [anon_sym_extern] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_typedef] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_auto] = ACTIONS(997), + [anon_sym_register] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_restrict] = ACTIONS(997), + [anon_sym_volatile] = ACTIONS(997), + [sym_function_specifier] = ACTIONS(997), + [anon_sym_unsigned] = ACTIONS(997), + [anon_sym_long] = ACTIONS(997), + [anon_sym_short] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [sym_identifier] = ACTIONS(999), [sym_comment] = ACTIONS(121), }, [192] = { - [sym__expression] = STATE(368), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym__pound_include] = ACTIONS(1003), + [sym__pound_define] = ACTIONS(1003), + [sym__pound_if] = ACTIONS(1003), + [sym__pound_ifdef] = ACTIONS(1003), + [sym__pound_endif] = ACTIONS(1003), + [sym__pound_else] = ACTIONS(1003), + [sym_preproc_directive] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_typedef] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1003), + [anon_sym_auto] = ACTIONS(1003), + [anon_sym_register] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1003), + [anon_sym_restrict] = ACTIONS(1003), + [anon_sym_volatile] = ACTIONS(1003), + [sym_function_specifier] = ACTIONS(1003), + [anon_sym_unsigned] = ACTIONS(1003), + [anon_sym_long] = ACTIONS(1003), + [anon_sym_short] = ACTIONS(1003), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_union] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1005), [sym_comment] = ACTIONS(121), }, [193] = { - [sym__expression] = STATE(369), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(334), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [194] = { - [sym__expression] = STATE(370), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [195] = { - [sym__expression] = STATE(371), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(272), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [196] = { - [sym__expression] = STATE(372), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [197] = { - [sym__expression] = STATE(373), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [198] = { - [sym__expression] = STATE(374), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(336), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [199] = { - [sym__expression] = STATE(375), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [200] = { - [sym__expression] = STATE(376), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_typedef] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_auto] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_restrict] = ACTIONS(1041), + [anon_sym_volatile] = ACTIONS(1041), + [sym_function_specifier] = ACTIONS(1041), + [anon_sym_COLON] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_sizeof] = ACTIONS(1041), + [sym_number_literal] = ACTIONS(1041), + [sym_char_literal] = ACTIONS(1041), + [sym_string_literal] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(121), }, [201] = { - [sym__expression] = STATE(377), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), [sym_comment] = ACTIONS(121), }, [202] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_enumerator] = STATE(350), + [anon_sym_RBRACE] = ACTIONS(1047), + [sym_identifier] = ACTIONS(283), [sym_comment] = ACTIONS(121), }, [203] = { - [anon_sym_const] = ACTIONS(959), - [anon_sym_restrict] = ACTIONS(959), - [anon_sym_volatile] = ACTIONS(959), - [anon_sym_unsigned] = ACTIONS(959), - [anon_sym_long] = ACTIONS(959), - [anon_sym_short] = ACTIONS(959), - [anon_sym_enum] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_union] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), + [sym__field_declarator] = STATE(205), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_field_declarator] = STATE(118), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(669), + [sym_identifier] = ACTIONS(459), [sym_comment] = ACTIONS(121), }, [204] = { - [sym__abstract_declarator] = STATE(381), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_abstract_function_declarator] = STATE(186), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), + [sym_parameter_list] = STATE(217), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(697), [sym_comment] = ACTIONS(121), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(963), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(965), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(963), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(965), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(965), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(965), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(965), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(965), - [sym_preproc_directive] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_extern] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_typedef] = ACTIONS(965), - [anon_sym_static] = ACTIONS(965), - [anon_sym_auto] = ACTIONS(965), - [anon_sym_register] = ACTIONS(965), - [anon_sym_const] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [sym_function_specifier] = ACTIONS(965), - [anon_sym_unsigned] = ACTIONS(965), - [anon_sym_long] = ACTIONS(965), - [anon_sym_short] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(965), - [anon_sym_struct] = ACTIONS(965), - [anon_sym_union] = ACTIONS(965), - [anon_sym_if] = ACTIONS(965), - [anon_sym_switch] = ACTIONS(965), - [anon_sym_case] = ACTIONS(965), - [anon_sym_default] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [anon_sym_do] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_return] = ACTIONS(965), - [anon_sym_break] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [anon_sym_goto] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_sizeof] = ACTIONS(965), - [sym_number_literal] = ACTIONS(965), - [sym_char_literal] = ACTIONS(965), - [sym_string_literal] = ACTIONS(963), - [sym_identifier] = ACTIONS(967), + [sym_parameter_list] = STATE(217), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(1051), [sym_comment] = ACTIONS(121), }, [206] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(389), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(969), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(983), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(352), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [207] = { - [anon_sym_LPAREN] = ACTIONS(985), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [208] = { - [anon_sym_LPAREN] = ACTIONS(987), + [sym__expression] = STATE(272), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [209] = { - [sym__expression] = STATE(392), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [210] = { - [anon_sym_COLON] = ACTIONS(989), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [211] = { - [anon_sym_LPAREN] = ACTIONS(991), + [sym__expression] = STATE(354), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [212] = { - [anon_sym_LPAREN] = ACTIONS(993), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [213] = { - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym__field_declarator] = STATE(368), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_field_declarator] = STATE(118), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(455), + [sym_identifier] = ACTIONS(459), [sym_comment] = ACTIONS(121), }, [214] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(997), + [anon_sym_extern] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_typedef] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_auto] = ACTIONS(1085), + [anon_sym_register] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [anon_sym_restrict] = ACTIONS(1085), + [anon_sym_volatile] = ACTIONS(1085), + [sym_function_specifier] = ACTIONS(1085), + [anon_sym_unsigned] = ACTIONS(1085), + [anon_sym_long] = ACTIONS(1085), + [anon_sym_short] = ACTIONS(1085), + [anon_sym_enum] = ACTIONS(1085), + [anon_sym_struct] = ACTIONS(1085), + [anon_sym_union] = ACTIONS(1085), + [sym_identifier] = ACTIONS(1089), [sym_comment] = ACTIONS(121), }, [215] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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_preproc_else] = STATE(398), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(999), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(564), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(578), + [sym__declaration_specifiers] = STATE(370), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(371), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(1091), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(579), [sym_comment] = ACTIONS(121), }, [216] = { - [ts_builtin_sym_end] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1003), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1003), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1003), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1003), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1003), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1003), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_typedef] = ACTIONS(1003), - [anon_sym_static] = ACTIONS(1003), - [anon_sym_auto] = ACTIONS(1003), - [anon_sym_register] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1003), - [anon_sym_restrict] = ACTIONS(1003), - [anon_sym_volatile] = ACTIONS(1003), - [sym_function_specifier] = ACTIONS(1003), - [anon_sym_unsigned] = ACTIONS(1003), - [anon_sym_long] = ACTIONS(1003), - [anon_sym_short] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1003), - [anon_sym_case] = ACTIONS(1003), - [anon_sym_default] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1003), - [anon_sym_do] = ACTIONS(1003), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_goto] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_sizeof] = ACTIONS(1003), - [sym_number_literal] = ACTIONS(1003), - [sym_char_literal] = ACTIONS(1003), - [sym_string_literal] = ACTIONS(1001), - [sym_identifier] = ACTIONS(1005), + [sym__expression] = STATE(372), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [217] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_COLON] = ACTIONS(1093), [sym_comment] = ACTIONS(121), }, [218] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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_preproc_else] = STATE(400), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(564), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1097), [sym_comment] = ACTIONS(121), }, [219] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(402), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(257), + [sym_parameter_list] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(725), [sym_comment] = ACTIONS(121), }, [220] = { - [sym__declarator] = STATE(84), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(590), - [sym_identifier] = ACTIONS(415), + [sym_parameter_list] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(725), [sym_comment] = ACTIONS(121), }, [221] = { - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [sym_identifier] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1103), [sym_comment] = ACTIONS(121), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1019), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1017), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1019), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1019), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1019), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1019), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1019), - [sym_preproc_directive] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_extern] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_typedef] = ACTIONS(1019), - [anon_sym_static] = ACTIONS(1019), - [anon_sym_auto] = ACTIONS(1019), - [anon_sym_register] = ACTIONS(1019), - [anon_sym_const] = ACTIONS(1019), - [anon_sym_restrict] = ACTIONS(1019), - [anon_sym_volatile] = ACTIONS(1019), - [sym_function_specifier] = ACTIONS(1019), - [anon_sym_unsigned] = ACTIONS(1019), - [anon_sym_long] = ACTIONS(1019), - [anon_sym_short] = ACTIONS(1019), - [anon_sym_enum] = ACTIONS(1019), - [anon_sym_struct] = ACTIONS(1019), - [anon_sym_union] = ACTIONS(1019), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_switch] = ACTIONS(1019), - [anon_sym_case] = ACTIONS(1019), - [anon_sym_default] = ACTIONS(1019), - [anon_sym_while] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1019), - [anon_sym_return] = ACTIONS(1019), - [anon_sym_break] = ACTIONS(1019), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_goto] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1017), - [anon_sym_TILDE] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), - [sym_number_literal] = ACTIONS(1019), - [sym_char_literal] = ACTIONS(1019), - [sym_string_literal] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1021), + [sym__expression] = STATE(377), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [223] = { - [sym__declarator] = STATE(140), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_init_declarator] = STATE(141), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1105), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [224] = { - [sym__expression] = STATE(403), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declaration_specifiers] = STATE(378), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(377), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(579), [sym_comment] = ACTIONS(121), }, [225] = { - [sym__expression] = STATE(404), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_COMMA] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1107), [sym_comment] = ACTIONS(121), }, [226] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_parameter_list] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(725), [sym_comment] = ACTIONS(121), }, [227] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1025), + [sym__declaration_specifiers] = STATE(134), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_declaration] = STATE(379), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [228] = { - [sym__expression] = STATE(407), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_COMMA] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1113), [sym_comment] = ACTIONS(121), }, [229] = { - [sym_declaration] = STATE(408), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(409), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1117), [sym_comment] = ACTIONS(121), }, [230] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [sym__declaration_specifiers] = STATE(134), + [sym__declarator] = STATE(83), + [sym__abstract_declarator] = STATE(219), + [sym_pointer_declarator] = STATE(44), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_list] = STATE(127), + [sym_parameter_declaration] = STATE(132), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(1121), [sym_comment] = ACTIONS(121), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(1031), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1031), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1033), - [sym_preproc_directive] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1031), - [anon_sym_typedef] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_auto] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_restrict] = ACTIONS(1033), - [anon_sym_volatile] = ACTIONS(1033), - [sym_function_specifier] = ACTIONS(1033), - [anon_sym_unsigned] = ACTIONS(1033), - [anon_sym_long] = ACTIONS(1033), - [anon_sym_short] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_switch] = ACTIONS(1033), - [anon_sym_case] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_goto] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_sizeof] = ACTIONS(1033), - [sym_number_literal] = ACTIONS(1033), - [sym_char_literal] = ACTIONS(1033), - [sym_string_literal] = ACTIONS(1031), - [sym_identifier] = ACTIONS(1035), + [sym__declarator] = STATE(84), + [sym__abstract_declarator] = STATE(220), + [sym_pointer_declarator] = STATE(44), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(491), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [232] = { - [anon_sym_RBRACE] = ACTIONS(1037), + [sym_parameter_list] = STATE(92), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(341), [sym_comment] = ACTIONS(121), }, [233] = { - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_extern] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_typedef] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_auto] = ACTIONS(1041), - [anon_sym_register] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_restrict] = ACTIONS(1041), - [anon_sym_volatile] = ACTIONS(1041), - [sym_function_specifier] = ACTIONS(1041), - [anon_sym_COLON] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_sizeof] = ACTIONS(1041), - [sym_number_literal] = ACTIONS(1041), - [sym_char_literal] = ACTIONS(1041), - [sym_string_literal] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1043), + [sym_parameter_list] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(725), [sym_comment] = ACTIONS(121), }, [234] = { - [anon_sym_COMMA] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_EQ] = ACTIONS(1047), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(384), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [235] = { - [aux_sym_enumerator_list_repeat1] = STATE(414), - [anon_sym_COMMA] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1037), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [236] = { - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_auto] = ACTIONS(1053), - [anon_sym_register] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_restrict] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1053), - [sym_function_specifier] = ACTIONS(1053), - [anon_sym_COLON] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1053), - [sym_number_literal] = ACTIONS(1053), - [sym_char_literal] = ACTIONS(1053), - [sym_string_literal] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1055), + [sym__expression] = STATE(272), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [237] = { - [sym__field_declarator] = STATE(417), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), + [sym__expression] = STATE(273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [238] = { - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_typedef] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1063), - [anon_sym_auto] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_restrict] = ACTIONS(1063), - [anon_sym_volatile] = ACTIONS(1063), - [sym_function_specifier] = ACTIONS(1063), - [anon_sym_unsigned] = ACTIONS(1063), - [anon_sym_long] = ACTIONS(1063), - [anon_sym_short] = ACTIONS(1063), - [anon_sym_enum] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1063), - [anon_sym_union] = ACTIONS(1063), - [anon_sym_COLON] = ACTIONS(1061), - [sym_identifier] = ACTIONS(1065), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [239] = { - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_COMMA] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1067), - [anon_sym_extern] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1067), - [anon_sym_RBRACK] = ACTIONS(1067), - [anon_sym_typedef] = ACTIONS(1069), - [anon_sym_static] = ACTIONS(1069), - [anon_sym_auto] = ACTIONS(1069), - [anon_sym_register] = ACTIONS(1069), - [anon_sym_const] = ACTIONS(1069), - [anon_sym_restrict] = ACTIONS(1069), - [anon_sym_volatile] = ACTIONS(1069), - [sym_function_specifier] = ACTIONS(1069), - [anon_sym_COLON] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_sizeof] = ACTIONS(1069), - [sym_number_literal] = ACTIONS(1069), - [sym_char_literal] = ACTIONS(1069), - [sym_string_literal] = ACTIONS(1067), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(386), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [240] = { - [sym__field_declarator] = STATE(418), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(644), - [sym_identifier] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [241] = { - [sym__expression] = STATE(419), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [242] = { - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_COMMA] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1079), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(1079), - [sym_identifier] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(1129), [sym_comment] = ACTIONS(121), }, [243] = { - [sym__field_declarator] = STATE(422), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_COLON] = ACTIONS(1084), - [sym_identifier] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1159), [sym_comment] = ACTIONS(121), }, [244] = { - [sym_parameter_list] = STATE(425), - [aux_sym_field_declaration_repeat1] = STATE(426), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1084), + [sym_preproc_include] = STATE(162), + [sym_preproc_def] = STATE(162), + [sym_preproc_function_def] = STATE(162), + [sym_preproc_call] = STATE(162), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_preproc_else_in_compound_statement] = STATE(411), + [sym_declaration] = STATE(162), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(162), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(412), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym__pound_endif] = ACTIONS(1161), + [sym__pound_else] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), [sym_comment] = ACTIONS(121), }, [245] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_COLON] = ACTIONS(1090), + [sym_preproc_include] = STATE(162), + [sym_preproc_def] = STATE(162), + [sym_preproc_function_def] = STATE(162), + [sym_preproc_call] = STATE(162), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_preproc_else_in_compound_statement] = STATE(414), + [sym_declaration] = STATE(162), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(162), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(415), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym__pound_endif] = ACTIONS(1179), + [sym__pound_else] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), [sym_comment] = ACTIONS(121), }, [246] = { - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_COMMA] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_COLON] = ACTIONS(1181), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_STAR_EQ] = ACTIONS(1181), + [anon_sym_SLASH_EQ] = ACTIONS(1181), + [anon_sym_PERCENT_EQ] = ACTIONS(1181), + [anon_sym_PLUS_EQ] = ACTIONS(1181), + [anon_sym_DASH_EQ] = ACTIONS(1181), + [anon_sym_LT_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_GT_EQ] = ACTIONS(1181), + [anon_sym_AMP_EQ] = ACTIONS(1181), + [anon_sym_CARET_EQ] = ACTIONS(1181), + [anon_sym_PIPE_EQ] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [247] = { - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_LBRACK] = ACTIONS(1094), - [anon_sym_COLON] = ACTIONS(1094), + [sym__expression] = STATE(422), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [248] = { - [anon_sym_LPAREN] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1096), - [anon_sym_typedef] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_auto] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_restrict] = ACTIONS(1098), - [anon_sym_volatile] = ACTIONS(1098), - [sym_function_specifier] = ACTIONS(1098), - [anon_sym_unsigned] = ACTIONS(1098), - [anon_sym_long] = ACTIONS(1098), - [anon_sym_short] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1096), - [sym_identifier] = ACTIONS(1100), + [sym__expression] = STATE(423), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [249] = { - [sym__declaration_specifiers] = STATE(243), - [sym__field_declarator] = STATE(244), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_field_declaration] = STATE(428), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_COLON] = ACTIONS(646), - [sym_identifier] = ACTIONS(648), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(424), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [250] = { - [anon_sym_LPAREN] = ACTIONS(1104), - [anon_sym_COMMA] = ACTIONS(1104), - [anon_sym_RPAREN] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_RBRACK] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [sym_function_specifier] = ACTIONS(1106), - [anon_sym_COLON] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1106), - [sym_char_literal] = ACTIONS(1106), - [sym_string_literal] = ACTIONS(1104), - [sym_identifier] = ACTIONS(1108), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [251] = { - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1110), - [anon_sym_RPAREN] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_RBRACK] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [sym_function_specifier] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1112), - [sym_string_literal] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1114), + [sym__expression] = STATE(272), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [252] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(429), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym__expression] = STATE(273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [253] = { - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [254] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(426), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [255] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [256] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1231), [sym_comment] = ACTIONS(121), }, [257] = { - [sym__expression] = STATE(431), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(443), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [258] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1233), [sym_comment] = ACTIONS(121), }, [259] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1235), [sym_comment] = ACTIONS(121), }, [260] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__expression] = STATE(446), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [261] = { - [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_COLON] = ACTIONS(1237), [sym_comment] = ACTIONS(121), }, [262] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(447), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(121), }, [263] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(806), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1241), [sym_comment] = ACTIONS(121), }, [264] = { - [sym__expression] = STATE(337), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [265] = { - [sym__expression] = STATE(448), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_while] = ACTIONS(1245), [sym_comment] = ACTIONS(121), }, [266] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(722), + [sym_declaration] = STATE(452), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(454), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [267] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1251), + [sym__pound_include] = ACTIONS(1253), + [sym__pound_define] = ACTIONS(1253), + [sym__pound_if] = ACTIONS(1253), + [sym__pound_ifdef] = ACTIONS(1253), + [sym__pound_endif] = ACTIONS(1253), + [sym__pound_else] = ACTIONS(1253), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_auto] = ACTIONS(1253), + [anon_sym_register] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_restrict] = ACTIONS(1253), + [anon_sym_volatile] = ACTIONS(1253), + [sym_function_specifier] = ACTIONS(1253), + [anon_sym_unsigned] = ACTIONS(1253), + [anon_sym_long] = ACTIONS(1253), + [anon_sym_short] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_switch] = ACTIONS(1253), + [anon_sym_case] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_goto] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_sizeof] = ACTIONS(1253), + [sym_number_literal] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [sym_string_literal] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1255), [sym_comment] = ACTIONS(121), }, [268] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [269] = { - [sym__expression] = STATE(452), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1259), + [sym__pound_include] = ACTIONS(1261), + [sym__pound_define] = ACTIONS(1261), + [sym__pound_if] = ACTIONS(1261), + [sym__pound_ifdef] = ACTIONS(1261), + [sym__pound_endif] = ACTIONS(1261), + [sym__pound_else] = ACTIONS(1261), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1261), + [anon_sym_auto] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1261), + [anon_sym_volatile] = ACTIONS(1261), + [sym_function_specifier] = ACTIONS(1261), + [anon_sym_unsigned] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_enum] = ACTIONS(1261), + [anon_sym_struct] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_switch] = ACTIONS(1261), + [anon_sym_case] = ACTIONS(1261), + [anon_sym_default] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_goto] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_sizeof] = ACTIONS(1261), + [sym_number_literal] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [sym_string_literal] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1263), [sym_comment] = ACTIONS(121), }, [270] = { - [sym__expression] = STATE(453), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1265), + [sym__pound_include] = ACTIONS(1267), + [sym__pound_define] = ACTIONS(1267), + [sym__pound_if] = ACTIONS(1267), + [sym__pound_ifdef] = ACTIONS(1267), + [sym__pound_endif] = ACTIONS(1267), + [sym__pound_else] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [sym_function_specifier] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1267), + [sym_char_literal] = ACTIONS(1267), + [sym_string_literal] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1269), [sym_comment] = ACTIONS(121), }, [271] = { - [sym__expression] = STATE(454), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(1271), [sym_comment] = ACTIONS(121), }, [272] = { - [sym__expression] = STATE(455), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [273] = { - [sym__expression] = STATE(456), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1277), + [anon_sym_EQ] = ACTIONS(1279), + [anon_sym_COLON] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_STAR_EQ] = ACTIONS(1277), + [anon_sym_SLASH_EQ] = ACTIONS(1277), + [anon_sym_PERCENT_EQ] = ACTIONS(1277), + [anon_sym_PLUS_EQ] = ACTIONS(1277), + [anon_sym_DASH_EQ] = ACTIONS(1277), + [anon_sym_LT_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_GT_EQ] = ACTIONS(1277), + [anon_sym_AMP_EQ] = ACTIONS(1277), + [anon_sym_CARET_EQ] = ACTIONS(1277), + [anon_sym_PIPE_EQ] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_LT_LT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_PERCENT] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [274] = { - [sym__expression] = STATE(457), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_COLON] = ACTIONS(1281), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [275] = { - [sym__expression] = STATE(458), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(457), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [276] = { - [sym__expression] = STATE(459), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [277] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_RBRACK] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_COLON] = ACTIONS(1289), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DOT] = ACTIONS(1289), + [anon_sym_DASH_GT] = ACTIONS(1289), + [sym_string_literal] = ACTIONS(1289), [sym_comment] = ACTIONS(121), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1156), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1158), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1156), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1158), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1158), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1158), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1158), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1158), - [sym_preproc_directive] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_auto] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_restrict] = ACTIONS(1158), - [anon_sym_volatile] = ACTIONS(1158), - [sym_function_specifier] = ACTIONS(1158), - [anon_sym_unsigned] = ACTIONS(1158), - [anon_sym_long] = ACTIONS(1158), - [anon_sym_short] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_goto] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_sizeof] = ACTIONS(1158), - [sym_number_literal] = ACTIONS(1158), - [sym_char_literal] = ACTIONS(1158), - [sym_string_literal] = ACTIONS(1156), - [sym_identifier] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_RBRACK] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_COLON] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_PERCENT_EQ] = ACTIONS(1293), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_LT_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_AMP_EQ] = ACTIONS(1293), + [anon_sym_CARET_EQ] = ACTIONS(1293), + [anon_sym_PIPE_EQ] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1293), + [anon_sym_BANG_EQ] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DOT] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1293), + [sym_string_literal] = ACTIONS(1297), [sym_comment] = ACTIONS(121), }, [279] = { - [sym__declarator] = STATE(461), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_init_declarator] = STATE(141), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(1162), - [sym_identifier] = ACTIONS(415), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [280] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_parameter_list] = STATE(92), + [aux_sym_declaration_repeat1] = STATE(93), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(335), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(343), [sym_comment] = ACTIONS(121), }, [281] = { - [sym__expression] = STATE(463), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(462), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [282] = { - [sym__expression] = STATE(464), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(463), + [sym_comma_expression] = STATE(464), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [283] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1166), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1303), + [sym__pound_include] = ACTIONS(1305), + [sym__pound_define] = ACTIONS(1305), + [sym__pound_if] = ACTIONS(1305), + [sym__pound_ifdef] = ACTIONS(1305), + [sym__pound_endif] = ACTIONS(1305), + [sym__pound_else] = ACTIONS(1305), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [sym_function_specifier] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_else] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1305), + [sym_char_literal] = ACTIONS(1305), + [sym_string_literal] = ACTIONS(1303), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(121), }, [284] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1168), + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [285] = { - [sym__expression] = STATE(467), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(466), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [286] = { - [sym_declaration] = STATE(468), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(469), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym__expression] = STATE(467), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [287] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [sym__expression] = STATE(468), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [288] = { - [anon_sym_LPAREN] = ACTIONS(1172), + [sym__expression] = STATE(469), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [289] = { - [sym__expression] = STATE(472), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(470), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [290] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [291] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(472), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [292] = { - [anon_sym_RPAREN] = ACTIONS(1178), + [sym__expression] = STATE(473), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [293] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(475), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym__expression] = STATE(474), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [294] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(475), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1180), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1182), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1180), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1182), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1182), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1182), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1182), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1182), - [sym_preproc_directive] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_RBRACE] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [sym_function_specifier] = ACTIONS(1182), - [anon_sym_unsigned] = ACTIONS(1182), - [anon_sym_long] = ACTIONS(1182), - [anon_sym_short] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_else] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_sizeof] = ACTIONS(1182), - [sym_number_literal] = ACTIONS(1182), - [sym_char_literal] = ACTIONS(1182), - [sym_string_literal] = ACTIONS(1180), - [sym_identifier] = ACTIONS(1184), + [sym__expression] = STATE(476), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [296] = { - [sym__expression] = STATE(337), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(477), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [297] = { - [sym__expression] = STATE(476), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_RBRACK] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DASH_GT] = ACTIONS(1309), [sym_comment] = ACTIONS(121), }, [298] = { - [sym__expression] = STATE(477), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(121), }, [299] = { - [sym__expression] = STATE(478), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_RBRACK] = ACTIONS(1315), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1315), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_STAR_EQ] = ACTIONS(1315), + [anon_sym_SLASH_EQ] = ACTIONS(1315), + [anon_sym_PERCENT_EQ] = ACTIONS(1315), + [anon_sym_PLUS_EQ] = ACTIONS(1315), + [anon_sym_DASH_EQ] = ACTIONS(1315), + [anon_sym_LT_LT_EQ] = ACTIONS(1315), + [anon_sym_GT_GT_EQ] = ACTIONS(1315), + [anon_sym_AMP_EQ] = ACTIONS(1315), + [anon_sym_CARET_EQ] = ACTIONS(1315), + [anon_sym_PIPE_EQ] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_EQ_EQ] = ACTIONS(1315), + [anon_sym_BANG_EQ] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(1317), + [anon_sym_PERCENT] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_DASH_GT] = ACTIONS(1315), [sym_comment] = ACTIONS(121), }, [300] = { - [sym__expression] = STATE(479), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [sym__pound_include] = ACTIONS(1321), + [sym__pound_define] = ACTIONS(1321), + [sym__pound_if] = ACTIONS(1321), + [sym__pound_ifdef] = ACTIONS(1321), + [sym__pound_endif] = ACTIONS(1321), + [sym__pound_else] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [sym_function_specifier] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1321), + [sym_string_literal] = ACTIONS(1319), + [sym_identifier] = ACTIONS(1323), [sym_comment] = ACTIONS(121), }, [301] = { - [sym__expression] = STATE(480), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1325), + [sym__pound_include] = ACTIONS(1327), + [sym__pound_define] = ACTIONS(1327), + [sym__pound_if] = ACTIONS(1327), + [sym__pound_ifdef] = ACTIONS(1327), + [sym__pound_endif] = ACTIONS(1327), + [sym__pound_else] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [sym_function_specifier] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1327), + [sym_char_literal] = ACTIONS(1327), + [sym_string_literal] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1329), [sym_comment] = ACTIONS(121), }, [302] = { - [sym__expression] = STATE(481), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1331), + [sym__pound_include] = ACTIONS(1333), + [sym__pound_define] = ACTIONS(1333), + [sym__pound_if] = ACTIONS(1333), + [sym__pound_ifdef] = ACTIONS(1333), + [sym__pound_endif] = ACTIONS(1333), + [sym__pound_else] = ACTIONS(1333), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_auto] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(1333), + [sym_function_specifier] = ACTIONS(1333), + [anon_sym_unsigned] = ACTIONS(1333), + [anon_sym_long] = ACTIONS(1333), + [anon_sym_short] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_switch] = ACTIONS(1333), + [anon_sym_case] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [sym_string_literal] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1335), [sym_comment] = ACTIONS(121), }, [303] = { - [sym__expression] = STATE(482), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1337), + [sym__pound_include] = ACTIONS(1339), + [sym__pound_define] = ACTIONS(1339), + [sym__pound_if] = ACTIONS(1339), + [sym__pound_ifdef] = ACTIONS(1339), + [sym__pound_endif] = ACTIONS(1339), + [sym__pound_else] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [sym_function_specifier] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1339), + [sym_char_literal] = ACTIONS(1339), + [sym_string_literal] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1341), [sym_comment] = ACTIONS(121), }, [304] = { - [sym__expression] = STATE(483), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(1343), [sym_comment] = ACTIONS(121), }, [305] = { - [sym__expression] = STATE(484), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(480), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [306] = { - [sym__expression] = STATE(485), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [307] = { - [sym__expression] = STATE(486), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1345), [sym_comment] = ACTIONS(121), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1188), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1186), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1188), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1188), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1188), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1188), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1188), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_typedef] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_auto] = ACTIONS(1188), - [anon_sym_register] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_restrict] = ACTIONS(1188), - [anon_sym_volatile] = ACTIONS(1188), - [sym_function_specifier] = ACTIONS(1188), - [anon_sym_unsigned] = ACTIONS(1188), - [anon_sym_long] = ACTIONS(1188), - [anon_sym_short] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_switch] = ACTIONS(1188), - [anon_sym_case] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_sizeof] = ACTIONS(1188), - [sym_number_literal] = ACTIONS(1188), - [sym_char_literal] = ACTIONS(1188), - [sym_string_literal] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1190), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [309] = { - [anon_sym_RPAREN] = ACTIONS(1192), + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [310] = { - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_COLON] = ACTIONS(1194), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_STAR_EQ] = ACTIONS(1194), - [anon_sym_SLASH_EQ] = ACTIONS(1194), - [anon_sym_PERCENT_EQ] = ACTIONS(1194), - [anon_sym_PLUS_EQ] = ACTIONS(1194), - [anon_sym_DASH_EQ] = ACTIONS(1194), - [anon_sym_LT_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_GT_EQ] = ACTIONS(1194), - [anon_sym_AMP_EQ] = ACTIONS(1194), - [anon_sym_CARET_EQ] = ACTIONS(1194), - [anon_sym_PIPE_EQ] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_DASH_GT] = ACTIONS(1194), - [sym_string_literal] = ACTIONS(1194), + [sym__expression] = STATE(482), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [311] = { - [anon_sym_RPAREN] = ACTIONS(1198), + [sym__expression] = STATE(483), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [312] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__expression] = STATE(484), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1202), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1200), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1202), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1202), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1202), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1202), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1202), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [sym_function_specifier] = ACTIONS(1202), - [anon_sym_unsigned] = ACTIONS(1202), - [anon_sym_long] = ACTIONS(1202), - [anon_sym_short] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_do] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_sizeof] = ACTIONS(1202), - [sym_number_literal] = ACTIONS(1202), - [sym_char_literal] = ACTIONS(1202), - [sym_string_literal] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1204), + [sym__expression] = STATE(485), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [314] = { - [sym__declarator] = STATE(84), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(822), - [sym_identifier] = ACTIONS(415), + [sym__expression] = STATE(486), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [315] = { - [sym__declarator] = STATE(489), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_init_declarator] = STATE(490), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(1162), - [sym_identifier] = ACTIONS(415), + [sym__expression] = STATE(487), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1208), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1208), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1208), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1208), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1208), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [sym_function_specifier] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1208), - [sym_char_literal] = ACTIONS(1208), - [sym_string_literal] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1210), + [sym__expression] = STATE(488), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [317] = { - [sym__expression] = STATE(491), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(492), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(489), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1212), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [sym_function_specifier] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_goto] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_sizeof] = ACTIONS(1214), - [sym_number_literal] = ACTIONS(1214), - [sym_char_literal] = ACTIONS(1214), - [sym_string_literal] = ACTIONS(1212), - [sym_identifier] = ACTIONS(1216), + [sym__expression] = STATE(490), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [319] = { - [anon_sym_COMMA] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1220), + [sym__expression] = STATE(491), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [320] = { - [aux_sym_parameter_list_repeat1] = STATE(497), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1224), + [sym__expression] = STATE(492), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [321] = { - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1226), - [anon_sym_COLON] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_RBRACK] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1349), + [anon_sym_QMARK] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_DASH_GT] = ACTIONS(1349), [sym_comment] = ACTIONS(121), }, [322] = { - [sym__declarator] = STATE(500), - [sym__abstract_declarator] = STATE(501), - [sym_pointer_declarator] = STATE(44), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1230), - [anon_sym_RPAREN] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(524), - [sym_identifier] = ACTIONS(415), + [sym__expression] = STATE(493), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [323] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(502), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_identifier] = ACTIONS(1353), [sym_comment] = ACTIONS(121), }, [324] = { - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [325] = { - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_COMMA] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_COMMA] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), [sym_comment] = ACTIONS(121), }, [326] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1359), [sym_comment] = ACTIONS(121), }, [327] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_EQ] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), [sym_comment] = ACTIONS(121), }, [328] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_designator] = STATE(498), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(957), [sym_comment] = ACTIONS(121), }, [329] = { - [sym__expression] = STATE(504), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_parameter_list] = STATE(92), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(343), [sym_comment] = ACTIONS(121), }, [330] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(373), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_sizeof] = ACTIONS(373), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_number_literal] = ACTIONS(373), - [sym_char_literal] = ACTIONS(373), - [sym_string_literal] = ACTIONS(905), - [sym_identifier] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), [sym_comment] = ACTIONS(121), }, [331] = { - [sym__expression] = STATE(506), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), [sym_comment] = ACTIONS(121), }, [332] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), [sym_comment] = ACTIONS(121), }, [333] = { - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DOT] = ACTIONS(1268), - [anon_sym_DASH_GT] = ACTIONS(1268), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(1373), + [sym_preproc_arg] = ACTIONS(1373), + [sym_comment] = ACTIONS(161), }, [334] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(521), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(1375), [sym_comment] = ACTIONS(121), }, [335] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_PERCENT_EQ] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_CARET_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(501), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [336] = { - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [337] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_COLON] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [338] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(502), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [339] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_PERCENT_EQ] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_CARET_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(503), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [340] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1286), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(504), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [341] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(505), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [342] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(506), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [343] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(507), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [344] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(508), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [345] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(509), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [346] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(510), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [347] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(511), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [348] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(512), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [349] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [sym_function_specifier] = ACTIONS(1379), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1379), + [sym_char_literal] = ACTIONS(1379), + [sym_string_literal] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1381), [sym_comment] = ACTIONS(121), }, [350] = { - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_COLON] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_DASH_GT] = ACTIONS(1308), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), [sym_comment] = ACTIONS(121), }, [351] = { - [sym_storage_class_specifier] = STATE(167), - [sym_type_qualifier] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [sym_string_literal] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_COLON] = ACTIONS(1385), [sym_comment] = ACTIONS(121), }, [352] = { - [anon_sym_LF] = ACTIONS(1318), - [sym_comment] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(1387), + [sym_comment] = ACTIONS(121), }, [353] = { - [aux_sym_preproc_params_repeat1] = STATE(527), - [anon_sym_COMMA] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1322), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(514), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [354] = { - [anon_sym_LF] = ACTIONS(1324), - [sym_preproc_arg] = ACTIONS(1324), - [sym_comment] = ACTIONS(225), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), + [sym_comment] = ACTIONS(121), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1328), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1326), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1328), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1328), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1328), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1328), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [sym_function_specifier] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [sym_string_literal] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_typedef] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_auto] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [sym_function_specifier] = ACTIONS(1389), + [anon_sym_unsigned] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1393), [sym_comment] = ACTIONS(121), }, [356] = { - [anon_sym_LF] = ACTIONS(1332), - [sym_comment] = ACTIONS(225), + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), + [sym_comment] = ACTIONS(121), }, [357] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(515), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [358] = { - [anon_sym_RPAREN] = ACTIONS(1334), + [sym__expression] = STATE(516), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [359] = { - [sym_parameter_list] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(947), + [sym__expression] = STATE(517), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [360] = { - [sym_parameter_list] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(947), + [sym__expression] = STATE(518), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [361] = { - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1340), + [sym__expression] = STATE(519), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [362] = { - [sym__expression] = STATE(532), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(520), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [363] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(521), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [364] = { - [sym__declaration_specifiers] = STATE(533), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(532), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(856), + [sym__expression] = STATE(522), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [365] = { - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1344), + [sym__expression] = STATE(523), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [366] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(524), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [367] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(525), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [368] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_parameter_list] = STATE(217), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(1395), [sym_comment] = ACTIONS(121), }, [369] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(1397), [sym_comment] = ACTIONS(121), }, [370] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(527), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [371] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [372] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [373] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__field_declarator] = STATE(529), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_field_declarator] = STATE(118), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(455), + [sym_identifier] = ACTIONS(459), [sym_comment] = ACTIONS(121), }, [374] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(530), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [375] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1403), [sym_comment] = ACTIONS(121), }, [376] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_RPAREN] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), [sym_comment] = ACTIONS(121), }, [377] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1407), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [378] = { - [sym__expression] = STATE(544), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(545), - [sym__initializer_list_contents] = STATE(546), - [sym_designator] = STATE(547), - [sym_concatenated_string] = STATE(35), - [aux_sym__initializer_list_contents_repeat1] = STATE(548), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(532), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [379] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1368), - [anon_sym_STAR_EQ] = ACTIONS(1368), - [anon_sym_SLASH_EQ] = ACTIONS(1368), - [anon_sym_PERCENT_EQ] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1368), - [anon_sym_DASH_EQ] = ACTIONS(1368), - [anon_sym_LT_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_GT_EQ] = ACTIONS(1368), - [anon_sym_AMP_EQ] = ACTIONS(1368), - [anon_sym_CARET_EQ] = ACTIONS(1368), - [anon_sym_PIPE_EQ] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_RPAREN] = ACTIONS(1409), [sym_comment] = ACTIONS(121), }, [380] = { - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_COMMA] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(1372), - [anon_sym_EQ] = ACTIONS(1374), - [anon_sym_COLON] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1372), - [anon_sym_STAR_EQ] = ACTIONS(1372), - [anon_sym_SLASH_EQ] = ACTIONS(1372), - [anon_sym_PERCENT_EQ] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1372), - [anon_sym_DASH_EQ] = ACTIONS(1372), - [anon_sym_LT_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_GT_EQ] = ACTIONS(1372), - [anon_sym_AMP_EQ] = ACTIONS(1372), - [anon_sym_CARET_EQ] = ACTIONS(1372), - [anon_sym_PIPE_EQ] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_CARET] = ACTIONS(1374), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_LT_LT] = ACTIONS(1374), - [anon_sym_GT_GT] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1374), - [anon_sym_PERCENT] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DASH_GT] = ACTIONS(1372), + [sym__declaration_specifiers] = STATE(134), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_declaration] = STATE(533), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [381] = { - [sym_parameter_list] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_RPAREN] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1413), + [anon_sym_COLON] = ACTIONS(1413), [sym_comment] = ACTIONS(121), }, [382] = { - [anon_sym_LPAREN] = ACTIONS(1378), + [sym__declarator] = STATE(84), + [sym__abstract_declarator] = STATE(220), + [sym_pointer_declarator] = STATE(44), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(491), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [383] = { - [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_COMMA] = ACTIONS(206), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [384] = { - [sym__expression] = STATE(551), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(1422), [sym_comment] = ACTIONS(121), }, [385] = { - [anon_sym_COLON] = ACTIONS(1382), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(535), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [386] = { - [anon_sym_LPAREN] = ACTIONS(1384), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [387] = { - [anon_sym_LPAREN] = ACTIONS(1386), + [sym__expression] = STATE(536), + [sym_comma_expression] = STATE(464), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [388] = { - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), - [sym_comment] = ACTIONS(121), - }, - [389] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1390), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_STAR_EQ] = ACTIONS(1424), + [anon_sym_SLASH_EQ] = ACTIONS(1424), + [anon_sym_PERCENT_EQ] = ACTIONS(1424), + [anon_sym_PLUS_EQ] = ACTIONS(1424), + [anon_sym_DASH_EQ] = ACTIONS(1424), + [anon_sym_LT_LT_EQ] = ACTIONS(1424), + [anon_sym_GT_GT_EQ] = ACTIONS(1424), + [anon_sym_AMP_EQ] = ACTIONS(1424), + [anon_sym_CARET_EQ] = ACTIONS(1424), + [anon_sym_PIPE_EQ] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1424), + [anon_sym_BANG_EQ] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_LT_EQ] = ACTIONS(1424), + [anon_sym_GT_EQ] = ACTIONS(1424), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_DASH_GT] = ACTIONS(1424), + [sym_comment] = ACTIONS(121), + }, + [389] = { + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [390] = { - [sym__expression] = STATE(556), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(537), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [391] = { - [sym__expression] = STATE(557), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(538), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [392] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(539), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [393] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1394), + [sym__expression] = STATE(540), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [394] = { - [sym__expression] = STATE(560), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(541), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [395] = { - [sym_declaration] = STATE(561), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(562), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym__expression] = STATE(542), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [396] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym__expression] = STATE(543), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1402), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1402), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1402), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1402), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1402), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [sym_function_specifier] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [sym_string_literal] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1404), + [sym__expression] = STATE(544), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [398] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1406), + [sym__expression] = STATE(545), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1410), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1410), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1410), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1410), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1410), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [sym_function_specifier] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [sym_string_literal] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1412), + [sym__expression] = STATE(546), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [400] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1414), + [sym__expression] = STATE(547), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1418), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1416), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1418), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1418), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1418), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1418), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [sym_function_specifier] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [sym_string_literal] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1420), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [402] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(1428), + [sym__pound_include] = ACTIONS(1430), + [sym__pound_define] = ACTIONS(1430), + [sym__pound_if] = ACTIONS(1430), + [sym__pound_ifdef] = ACTIONS(1430), + [sym__pound_endif] = ACTIONS(1430), + [sym__pound_else] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [sym_function_specifier] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [sym_string_literal] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(121), }, [403] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_preproc_include] = STATE(162), + [sym_preproc_def] = STATE(162), + [sym_preproc_function_def] = STATE(162), + [sym_preproc_call] = STATE(162), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_declaration] = STATE(162), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(162), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(557), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym__pound_endif] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1448), [sym_comment] = ACTIONS(121), }, [404] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1450), [sym_comment] = ACTIONS(121), }, [405] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(1452), [sym_comment] = ACTIONS(121), }, [406] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym__expression] = STATE(560), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [407] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(1454), [sym_comment] = ACTIONS(121), }, [408] = { - [sym__expression] = STATE(571), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1456), [sym_comment] = ACTIONS(121), }, [409] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1458), [sym_comment] = ACTIONS(121), }, [410] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [411] = { - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_RBRACK] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [sym_function_specifier] = ACTIONS(1436), - [anon_sym_COLON] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1436), - [sym_char_literal] = ACTIONS(1436), - [sym_string_literal] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1438), + [sym__pound_endif] = ACTIONS(1462), [sym_comment] = ACTIONS(121), }, [412] = { - [sym__expression] = STATE(573), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_preproc_include] = STATE(301), + [sym_preproc_def] = STATE(301), + [sym_preproc_function_def] = STATE(301), + [sym_preproc_call] = STATE(301), + [sym_preproc_if_in_compound_statement] = STATE(302), + [sym_preproc_ifdef_in_compound_statement] = STATE(303), + [sym_preproc_else_in_compound_statement] = STATE(567), + [sym_declaration] = STATE(301), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(301), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(301), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym__pound_endif] = ACTIONS(1464), + [sym__pound_else] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), [sym_comment] = ACTIONS(121), }, [413] = { - [sym_enumerator] = STATE(575), - [anon_sym_RBRACE] = ACTIONS(1440), - [sym_identifier] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(1466), + [sym__pound_include] = ACTIONS(1468), + [sym__pound_define] = ACTIONS(1468), + [sym__pound_if] = ACTIONS(1468), + [sym__pound_ifdef] = ACTIONS(1468), + [sym__pound_endif] = ACTIONS(1468), + [sym__pound_else] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [sym_function_specifier] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [sym_string_literal] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1470), [sym_comment] = ACTIONS(121), }, [414] = { - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1440), + [sym__pound_endif] = ACTIONS(1472), [sym_comment] = ACTIONS(121), }, [415] = { - [sym__field_declarator] = STATE(418), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1059), + [sym_preproc_include] = STATE(301), + [sym_preproc_def] = STATE(301), + [sym_preproc_function_def] = STATE(301), + [sym_preproc_call] = STATE(301), + [sym_preproc_if_in_compound_statement] = STATE(302), + [sym_preproc_ifdef_in_compound_statement] = STATE(303), + [sym_preproc_else_in_compound_statement] = STATE(570), + [sym_declaration] = STATE(301), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(301), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(301), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym__pound_endif] = ACTIONS(1474), + [sym__pound_else] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), [sym_comment] = ACTIONS(121), }, [416] = { - [anon_sym_LPAREN] = ACTIONS(1077), - [anon_sym_COMMA] = ACTIONS(1077), - [anon_sym_RPAREN] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_COLON] = ACTIONS(1077), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(571), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [417] = { - [sym_parameter_list] = STATE(425), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1088), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [418] = { - [sym_parameter_list] = STATE(425), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1446), + [sym__expression] = STATE(272), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [419] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [420] = { - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [sym_function_specifier] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_COLON] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1454), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [421] = { - [sym__expression] = STATE(579), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(573), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [422] = { - [sym_parameter_list] = STATE(425), - [aux_sym_field_declaration_repeat1] = STATE(581), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1456), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [423] = { - [sym__field_declarator] = STATE(582), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(644), - [sym_identifier] = ACTIONS(1059), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [424] = { - [sym__declaration_specifiers] = STATE(584), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(585), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(1510), [sym_comment] = ACTIONS(121), }, [425] = { - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_COLON] = ACTIONS(1460), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(589), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [426] = { - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_COLON] = ACTIONS(1456), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [427] = { - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_RBRACK] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [anon_sym_volatile] = ACTIONS(1466), - [sym_function_specifier] = ACTIONS(1466), - [anon_sym_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [sym_string_literal] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1468), + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [428] = { - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [sym_function_specifier] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_COLON] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1474), + [sym__expression] = STATE(590), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [429] = { - [anon_sym_RPAREN] = ACTIONS(1476), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1231), [sym_comment] = ACTIONS(121), }, [430] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(588), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym__expression] = STATE(592), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [431] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(593), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [432] = { - [sym_compound_statement] = STATE(596), - [sym_labeled_statement] = STATE(596), - [sym_expression_statement] = STATE(596), - [sym_if_statement] = STATE(596), - [sym_switch_statement] = STATE(596), - [sym_case_statement] = STATE(596), - [sym_while_statement] = STATE(596), - [sym_do_statement] = STATE(596), - [sym_for_statement] = STATE(596), - [sym_return_statement] = STATE(596), - [sym_break_statement] = STATE(596), - [sym_continue_statement] = STATE(596), - [sym_goto_statement] = STATE(596), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym__expression] = STATE(594), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [433] = { - [sym__expression] = STATE(337), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(595), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [434] = { - [sym__expression] = STATE(597), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(596), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [435] = { - [sym__expression] = STATE(598), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(597), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [436] = { - [sym__expression] = STATE(599), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(598), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [437] = { - [sym__expression] = STATE(600), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(599), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [438] = { - [sym__expression] = STATE(601), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(600), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [439] = { - [sym__expression] = STATE(602), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(601), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [440] = { - [sym__expression] = STATE(603), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [441] = { - [sym__expression] = STATE(604), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1512), + [sym__pound_include] = ACTIONS(1514), + [sym__pound_define] = ACTIONS(1514), + [sym__pound_if] = ACTIONS(1514), + [sym__pound_ifdef] = ACTIONS(1514), + [sym__pound_endif] = ACTIONS(1514), + [sym__pound_else] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [sym_function_specifier] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [sym_string_literal] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1516), [sym_comment] = ACTIONS(121), }, [442] = { - [sym__expression] = STATE(605), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declarator] = STATE(280), + [sym_pointer_declarator] = STATE(44), + [sym_function_declarator] = STATE(44), + [sym_array_declarator] = STATE(44), + [sym_init_declarator] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(505), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [443] = { - [sym__expression] = STATE(606), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [444] = { - [sym__expression] = STATE(607), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(603), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [445] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [sym__expression] = STATE(604), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [446] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [447] = { - [anon_sym_RPAREN] = ACTIONS(1492), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1522), [sym_comment] = ACTIONS(121), }, [448] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(607), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1496), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1494), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1496), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1496), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1496), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1496), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [sym_function_specifier] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [sym_string_literal] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1498), + [sym_declaration] = STATE(608), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(609), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [450] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1500), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [451] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1526), [sym_comment] = ACTIONS(121), }, [452] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(612), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [453] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [454] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [455] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1532), + [sym__pound_include] = ACTIONS(1534), + [sym__pound_define] = ACTIONS(1534), + [sym__pound_if] = ACTIONS(1534), + [sym__pound_ifdef] = ACTIONS(1534), + [sym__pound_endif] = ACTIONS(1534), + [sym__pound_else] = ACTIONS(1534), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_auto] = ACTIONS(1534), + [anon_sym_register] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_restrict] = ACTIONS(1534), + [anon_sym_volatile] = ACTIONS(1534), + [sym_function_specifier] = ACTIONS(1534), + [anon_sym_unsigned] = ACTIONS(1534), + [anon_sym_long] = ACTIONS(1534), + [anon_sym_short] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_else] = ACTIONS(1534), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_goto] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1534), + [sym_number_literal] = ACTIONS(1534), + [sym_char_literal] = ACTIONS(1534), + [sym_string_literal] = ACTIONS(1532), + [sym_identifier] = ACTIONS(1536), [sym_comment] = ACTIONS(121), }, [456] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1538), + [sym__pound_include] = ACTIONS(1540), + [sym__pound_define] = ACTIONS(1540), + [sym__pound_if] = ACTIONS(1540), + [sym__pound_ifdef] = ACTIONS(1540), + [sym__pound_endif] = ACTIONS(1540), + [sym__pound_else] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [sym_function_specifier] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [sym_string_literal] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1542), [sym_comment] = ACTIONS(121), }, [457] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(1544), [sym_comment] = ACTIONS(121), }, [458] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_COLON] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_COLON] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_STAR_EQ] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1546), + [anon_sym_PERCENT_EQ] = ACTIONS(1546), + [anon_sym_PLUS_EQ] = ACTIONS(1546), + [anon_sym_DASH_EQ] = ACTIONS(1546), + [anon_sym_LT_LT_EQ] = ACTIONS(1546), + [anon_sym_GT_GT_EQ] = ACTIONS(1546), + [anon_sym_AMP_EQ] = ACTIONS(1546), + [anon_sym_CARET_EQ] = ACTIONS(1546), + [anon_sym_PIPE_EQ] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_PIPE_PIPE] = ACTIONS(1546), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym_EQ_EQ] = ACTIONS(1546), + [anon_sym_BANG_EQ] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1548), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1546), + [sym_string_literal] = ACTIONS(1546), [sym_comment] = ACTIONS(121), }, [459] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_COLON] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [460] = { - [sym__declarator] = STATE(84), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(1162), - [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(1550), + [sym__pound_include] = ACTIONS(1552), + [sym__pound_define] = ACTIONS(1552), + [sym__pound_if] = ACTIONS(1552), + [sym__pound_ifdef] = ACTIONS(1552), + [sym__pound_endif] = ACTIONS(1552), + [sym__pound_else] = ACTIONS(1552), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_typedef] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_auto] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_restrict] = ACTIONS(1552), + [anon_sym_volatile] = ACTIONS(1552), + [sym_function_specifier] = ACTIONS(1552), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_else] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_sizeof] = ACTIONS(1552), + [sym_number_literal] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [sym_string_literal] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1554), [sym_comment] = ACTIONS(121), }, [461] = { - [sym_parameter_list] = STATE(145), - [aux_sym_declaration_repeat1] = STATE(319), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_COLON] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_STAR_EQ] = ACTIONS(1556), + [anon_sym_SLASH_EQ] = ACTIONS(1556), + [anon_sym_PERCENT_EQ] = ACTIONS(1556), + [anon_sym_PLUS_EQ] = ACTIONS(1556), + [anon_sym_DASH_EQ] = ACTIONS(1556), + [anon_sym_LT_LT_EQ] = ACTIONS(1556), + [anon_sym_GT_GT_EQ] = ACTIONS(1556), + [anon_sym_AMP_EQ] = ACTIONS(1556), + [anon_sym_CARET_EQ] = ACTIONS(1556), + [anon_sym_PIPE_EQ] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_PIPE_PIPE] = ACTIONS(1556), + [anon_sym_AMP_AMP] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym_EQ_EQ] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_LT_EQ] = ACTIONS(1556), + [anon_sym_GT_EQ] = ACTIONS(1556), + [anon_sym_LT_LT] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_DASH_GT] = ACTIONS(1556), [sym_comment] = ACTIONS(121), }, [462] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(617), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [463] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(891), + [anon_sym_SLASH_EQ] = ACTIONS(891), + [anon_sym_PERCENT_EQ] = ACTIONS(891), + [anon_sym_PLUS_EQ] = ACTIONS(891), + [anon_sym_DASH_EQ] = ACTIONS(891), + [anon_sym_LT_LT_EQ] = ACTIONS(891), + [anon_sym_GT_GT_EQ] = ACTIONS(891), + [anon_sym_AMP_EQ] = ACTIONS(891), + [anon_sym_CARET_EQ] = ACTIONS(891), + [anon_sym_PIPE_EQ] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [464] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), [sym_comment] = ACTIONS(121), }, [465] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1168), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_COLON] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [466] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1570), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [467] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(891), + [anon_sym_SLASH_EQ] = ACTIONS(891), + [anon_sym_PERCENT_EQ] = ACTIONS(891), + [anon_sym_PLUS_EQ] = ACTIONS(891), + [anon_sym_DASH_EQ] = ACTIONS(891), + [anon_sym_LT_LT_EQ] = ACTIONS(891), + [anon_sym_GT_GT_EQ] = ACTIONS(891), + [anon_sym_AMP_EQ] = ACTIONS(891), + [anon_sym_CARET_EQ] = ACTIONS(891), + [anon_sym_PIPE_EQ] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [468] = { - [sym__expression] = STATE(616), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [469] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [470] = { - [sym__expression] = STATE(618), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [471] = { - [sym__expression] = STATE(620), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [472] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [473] = { - [sym__expression] = STATE(622), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [474] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PERCENT_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_LT_LT_EQ] = ACTIONS(1584), + [anon_sym_GT_GT_EQ] = ACTIONS(1584), + [anon_sym_AMP_EQ] = ACTIONS(1584), + [anon_sym_CARET_EQ] = ACTIONS(1584), + [anon_sym_PIPE_EQ] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1584), + [anon_sym_AMP_AMP] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [475] = { - [anon_sym_RPAREN] = ACTIONS(1516), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PERCENT_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_LT_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_GT_EQ] = ACTIONS(1588), + [anon_sym_AMP_EQ] = ACTIONS(1588), + [anon_sym_CARET_EQ] = ACTIONS(1588), + [anon_sym_PIPE_EQ] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [476] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_STAR_EQ] = ACTIONS(1592), + [anon_sym_SLASH_EQ] = ACTIONS(1592), + [anon_sym_PERCENT_EQ] = ACTIONS(1592), + [anon_sym_PLUS_EQ] = ACTIONS(1592), + [anon_sym_DASH_EQ] = ACTIONS(1592), + [anon_sym_LT_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_GT_EQ] = ACTIONS(1592), + [anon_sym_AMP_EQ] = ACTIONS(1592), + [anon_sym_CARET_EQ] = ACTIONS(1592), + [anon_sym_PIPE_EQ] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1592), + [anon_sym_AMP_AMP] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_BANG_EQ] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_EQ] = ACTIONS(1592), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [477] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [478] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_STAR_EQ] = ACTIONS(1596), + [anon_sym_SLASH_EQ] = ACTIONS(1596), + [anon_sym_PERCENT_EQ] = ACTIONS(1596), + [anon_sym_PLUS_EQ] = ACTIONS(1596), + [anon_sym_DASH_EQ] = ACTIONS(1596), + [anon_sym_LT_LT_EQ] = ACTIONS(1596), + [anon_sym_GT_GT_EQ] = ACTIONS(1596), + [anon_sym_AMP_EQ] = ACTIONS(1596), + [anon_sym_CARET_EQ] = ACTIONS(1596), + [anon_sym_PIPE_EQ] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1598), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_DASH_GT] = ACTIONS(1596), [sym_comment] = ACTIONS(121), }, [479] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [480] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(1600), [sym_comment] = ACTIONS(121), }, [481] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), [sym_comment] = ACTIONS(121), }, [482] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [483] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [484] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [485] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [486] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [487] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [488] = { - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_RBRACK] = ACTIONS(1528), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_auto] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_restrict] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [sym_function_specifier] = ACTIONS(1530), - [anon_sym_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_sizeof] = ACTIONS(1530), - [sym_number_literal] = ACTIONS(1530), - [sym_char_literal] = ACTIONS(1530), - [sym_string_literal] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1532), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [489] = { - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(834), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PERCENT_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_LT_LT_EQ] = ACTIONS(1584), + [anon_sym_GT_GT_EQ] = ACTIONS(1584), + [anon_sym_AMP_EQ] = ACTIONS(1584), + [anon_sym_CARET_EQ] = ACTIONS(1584), + [anon_sym_PIPE_EQ] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1584), + [anon_sym_AMP_AMP] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [490] = { - [anon_sym_COMMA] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PERCENT_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_LT_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_GT_EQ] = ACTIONS(1588), + [anon_sym_AMP_EQ] = ACTIONS(1588), + [anon_sym_CARET_EQ] = ACTIONS(1588), + [anon_sym_PIPE_EQ] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [491] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_PERCENT_EQ] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_CARET_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_STAR_EQ] = ACTIONS(1592), + [anon_sym_SLASH_EQ] = ACTIONS(1592), + [anon_sym_PERCENT_EQ] = ACTIONS(1592), + [anon_sym_PLUS_EQ] = ACTIONS(1592), + [anon_sym_DASH_EQ] = ACTIONS(1592), + [anon_sym_LT_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_GT_EQ] = ACTIONS(1592), + [anon_sym_AMP_EQ] = ACTIONS(1592), + [anon_sym_CARET_EQ] = ACTIONS(1592), + [anon_sym_PIPE_EQ] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1592), + [anon_sym_AMP_AMP] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_BANG_EQ] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_EQ] = ACTIONS(1592), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [492] = { - [anon_sym_COMMA] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1536), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [493] = { - [sym__declarator] = STATE(625), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_init_declarator] = STATE(626), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(1162), - [sym_identifier] = ACTIONS(415), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [494] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1540), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1540), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1540), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1540), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1540), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1540), - [sym_preproc_directive] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_typedef] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_auto] = ACTIONS(1540), - [anon_sym_register] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_restrict] = ACTIONS(1540), - [anon_sym_volatile] = ACTIONS(1540), - [sym_function_specifier] = ACTIONS(1540), - [anon_sym_unsigned] = ACTIONS(1540), - [anon_sym_long] = ACTIONS(1540), - [anon_sym_short] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_goto] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_sizeof] = ACTIONS(1540), - [sym_number_literal] = ACTIONS(1540), - [sym_char_literal] = ACTIONS(1540), - [sym_string_literal] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), [sym_comment] = ACTIONS(121), }, [495] = { - [sym__declaration_specifiers] = STATE(322), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_declaration] = STATE(627), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(479), + [sym__expression] = STATE(624), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(625), + [sym_designator] = STATE(327), + [sym_concatenated_string] = STATE(159), + [aux_sym__initializer_list_contents_repeat1] = STATE(626), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(957), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [496] = { - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1546), - [anon_sym_RPAREN] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_COLON] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1612), + [anon_sym_STAR_EQ] = ACTIONS(1612), + [anon_sym_SLASH_EQ] = ACTIONS(1612), + [anon_sym_PERCENT_EQ] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1612), + [anon_sym_DASH_EQ] = ACTIONS(1612), + [anon_sym_LT_LT_EQ] = ACTIONS(1612), + [anon_sym_GT_GT_EQ] = ACTIONS(1612), + [anon_sym_AMP_EQ] = ACTIONS(1612), + [anon_sym_CARET_EQ] = ACTIONS(1612), + [anon_sym_PIPE_EQ] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_AMP_AMP] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_CARET] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1612), + [anon_sym_BANG_EQ] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1612), + [anon_sym_GT_EQ] = ACTIONS(1612), + [anon_sym_LT_LT] = ACTIONS(1614), + [anon_sym_GT_GT] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DOT] = ACTIONS(1612), + [anon_sym_DASH_GT] = ACTIONS(1612), [sym_comment] = ACTIONS(121), }, [497] = { - [anon_sym_COMMA] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1550), + [sym__expression] = STATE(624), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(625), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [498] = { - [sym__declaration_specifiers] = STATE(322), - [sym__declarator] = STATE(62), - [sym__abstract_declarator] = STATE(359), - [sym_pointer_declarator] = STATE(44), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_list] = STATE(187), - [sym_parameter_declaration] = STATE(320), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), [sym_comment] = ACTIONS(121), }, [499] = { - [sym__declarator] = STATE(84), - [sym__abstract_declarator] = STATE(360), - [sym_pointer_declarator] = STATE(44), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(524), - [sym_identifier] = ACTIONS(415), + [anon_sym_COMMA] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), [sym_comment] = ACTIONS(121), }, [500] = { - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(419), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [501] = { - [sym_parameter_list] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(1620), [sym_comment] = ACTIONS(121), }, [502] = { - [anon_sym_RPAREN] = ACTIONS(1558), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [503] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(633), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [504] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(806), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [505] = { - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_COMMA] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_EQ] = ACTIONS(1560), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [506] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [507] = { - [sym__expression] = STATE(337), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [508] = { - [sym__expression] = STATE(635), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [509] = { - [sym__expression] = STATE(636), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PERCENT_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_LT_LT_EQ] = ACTIONS(1584), + [anon_sym_GT_GT_EQ] = ACTIONS(1584), + [anon_sym_AMP_EQ] = ACTIONS(1584), + [anon_sym_CARET_EQ] = ACTIONS(1584), + [anon_sym_PIPE_EQ] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1584), + [anon_sym_AMP_AMP] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [510] = { - [sym__expression] = STATE(637), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PERCENT_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_LT_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_GT_EQ] = ACTIONS(1588), + [anon_sym_AMP_EQ] = ACTIONS(1588), + [anon_sym_CARET_EQ] = ACTIONS(1588), + [anon_sym_PIPE_EQ] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [511] = { - [sym__expression] = STATE(638), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_STAR_EQ] = ACTIONS(1592), + [anon_sym_SLASH_EQ] = ACTIONS(1592), + [anon_sym_PERCENT_EQ] = ACTIONS(1592), + [anon_sym_PLUS_EQ] = ACTIONS(1592), + [anon_sym_DASH_EQ] = ACTIONS(1592), + [anon_sym_LT_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_GT_EQ] = ACTIONS(1592), + [anon_sym_AMP_EQ] = ACTIONS(1592), + [anon_sym_CARET_EQ] = ACTIONS(1592), + [anon_sym_PIPE_EQ] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1592), + [anon_sym_AMP_AMP] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_BANG_EQ] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_EQ] = ACTIONS(1592), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [512] = { - [sym__expression] = STATE(639), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [513] = { - [sym__expression] = STATE(640), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [514] = { - [sym__expression] = STATE(641), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(1624), [sym_comment] = ACTIONS(121), }, [515] = { - [sym__expression] = STATE(642), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [516] = { - [sym__expression] = STATE(643), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [517] = { - [sym__expression] = STATE(644), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [518] = { - [sym__expression] = STATE(645), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [519] = { - [sym__expression] = STATE(646), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [520] = { - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_COMMA] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_RBRACK] = ACTIONS(1564), - [anon_sym_EQ] = ACTIONS(1566), - [anon_sym_COLON] = ACTIONS(1564), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_LT_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_GT_EQ] = ACTIONS(1564), - [anon_sym_AMP_EQ] = ACTIONS(1564), - [anon_sym_CARET_EQ] = ACTIONS(1564), - [anon_sym_PIPE_EQ] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_LT_LT] = ACTIONS(1566), - [anon_sym_GT_GT] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_DASH_GT] = ACTIONS(1564), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [521] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1570), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [522] = { - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1574), - [anon_sym_COLON] = ACTIONS(1572), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_STAR_EQ] = ACTIONS(1572), - [anon_sym_SLASH_EQ] = ACTIONS(1572), - [anon_sym_PERCENT_EQ] = ACTIONS(1572), - [anon_sym_PLUS_EQ] = ACTIONS(1572), - [anon_sym_DASH_EQ] = ACTIONS(1572), - [anon_sym_LT_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_GT_EQ] = ACTIONS(1572), - [anon_sym_AMP_EQ] = ACTIONS(1572), - [anon_sym_CARET_EQ] = ACTIONS(1572), - [anon_sym_PIPE_EQ] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1574), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_GT] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1574), - [anon_sym_GT_GT] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1574), - [anon_sym_PERCENT] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1572), - [anon_sym_DASH_GT] = ACTIONS(1572), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PERCENT_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_LT_LT_EQ] = ACTIONS(1584), + [anon_sym_GT_GT_EQ] = ACTIONS(1584), + [anon_sym_AMP_EQ] = ACTIONS(1584), + [anon_sym_CARET_EQ] = ACTIONS(1584), + [anon_sym_PIPE_EQ] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1584), + [anon_sym_AMP_AMP] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [523] = { - [sym__expression] = STATE(649), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PERCENT_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_LT_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_GT_EQ] = ACTIONS(1588), + [anon_sym_AMP_EQ] = ACTIONS(1588), + [anon_sym_CARET_EQ] = ACTIONS(1588), + [anon_sym_PIPE_EQ] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [524] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1578), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1576), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1578), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1578), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1578), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1578), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1578), - [sym_preproc_directive] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_typedef] = ACTIONS(1578), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_auto] = ACTIONS(1578), - [anon_sym_register] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_restrict] = ACTIONS(1578), - [anon_sym_volatile] = ACTIONS(1578), - [sym_function_specifier] = ACTIONS(1578), - [anon_sym_unsigned] = ACTIONS(1578), - [anon_sym_long] = ACTIONS(1578), - [anon_sym_short] = ACTIONS(1578), - [anon_sym_enum] = ACTIONS(1578), - [anon_sym_struct] = ACTIONS(1578), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_switch] = ACTIONS(1578), - [anon_sym_case] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_do] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_continue] = ACTIONS(1578), - [anon_sym_goto] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_sizeof] = ACTIONS(1578), - [sym_number_literal] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1578), - [sym_string_literal] = ACTIONS(1576), - [sym_identifier] = ACTIONS(1580), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_STAR_EQ] = ACTIONS(1592), + [anon_sym_SLASH_EQ] = ACTIONS(1592), + [anon_sym_PERCENT_EQ] = ACTIONS(1592), + [anon_sym_PLUS_EQ] = ACTIONS(1592), + [anon_sym_DASH_EQ] = ACTIONS(1592), + [anon_sym_LT_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_GT_EQ] = ACTIONS(1592), + [anon_sym_AMP_EQ] = ACTIONS(1592), + [anon_sym_CARET_EQ] = ACTIONS(1592), + [anon_sym_PIPE_EQ] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1592), + [anon_sym_AMP_AMP] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_BANG_EQ] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_EQ] = ACTIONS(1592), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [525] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [526] = { - [anon_sym_LF] = ACTIONS(1586), - [sym_preproc_arg] = ACTIONS(1586), - [sym_comment] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1628), + [sym_comment] = ACTIONS(121), }, [527] = { - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_RPAREN] = ACTIONS(1590), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [528] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1592), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1594), - [sym_preproc_directive] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_extern] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_typedef] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_auto] = ACTIONS(1594), - [anon_sym_register] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1594), - [anon_sym_restrict] = ACTIONS(1594), - [anon_sym_volatile] = ACTIONS(1594), - [sym_function_specifier] = ACTIONS(1594), - [anon_sym_unsigned] = ACTIONS(1594), - [anon_sym_long] = ACTIONS(1594), - [anon_sym_short] = ACTIONS(1594), - [anon_sym_enum] = ACTIONS(1594), - [anon_sym_struct] = ACTIONS(1594), - [anon_sym_union] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1594), - [anon_sym_switch] = ACTIONS(1594), - [anon_sym_case] = ACTIONS(1594), - [anon_sym_default] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_do] = ACTIONS(1594), - [anon_sym_for] = ACTIONS(1594), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1594), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_goto] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_PLUS_PLUS] = ACTIONS(1592), - [anon_sym_sizeof] = ACTIONS(1594), - [sym_number_literal] = ACTIONS(1594), - [sym_char_literal] = ACTIONS(1594), - [sym_string_literal] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_typedef] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_auto] = ACTIONS(1632), + [anon_sym_register] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [anon_sym_restrict] = ACTIONS(1632), + [anon_sym_volatile] = ACTIONS(1632), + [sym_function_specifier] = ACTIONS(1632), + [anon_sym_unsigned] = ACTIONS(1632), + [anon_sym_long] = ACTIONS(1632), + [anon_sym_short] = ACTIONS(1632), + [anon_sym_enum] = ACTIONS(1632), + [anon_sym_struct] = ACTIONS(1632), + [anon_sym_union] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1636), [sym_comment] = ACTIONS(121), }, [529] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1598), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_parameter_list] = STATE(217), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(1638), [sym_comment] = ACTIONS(121), }, [530] = { - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [531] = { - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_COMMA] = ACTIONS(1604), - [anon_sym_RPAREN] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), [sym_comment] = ACTIONS(121), }, [532] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [533] = { - [sym__expression] = STATE(654), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), [sym_comment] = ACTIONS(121), }, [534] = { - [sym__expression] = STATE(655), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [535] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(656), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [anon_sym_RPAREN] = ACTIONS(1648), [sym_comment] = ACTIONS(121), }, [536] = { - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_COMMA] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACK] = ACTIONS(1608), - [anon_sym_EQ] = ACTIONS(1610), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_STAR_EQ] = ACTIONS(1608), - [anon_sym_SLASH_EQ] = ACTIONS(1608), - [anon_sym_PERCENT_EQ] = ACTIONS(1608), - [anon_sym_PLUS_EQ] = ACTIONS(1608), - [anon_sym_DASH_EQ] = ACTIONS(1608), - [anon_sym_LT_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_GT_EQ] = ACTIONS(1608), - [anon_sym_AMP_EQ] = ACTIONS(1608), - [anon_sym_CARET_EQ] = ACTIONS(1608), - [anon_sym_PIPE_EQ] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1608), - [anon_sym_LT_LT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1608), - [anon_sym_PLUS_PLUS] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DASH_GT] = ACTIONS(1608), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [537] = { - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [538] = { - [sym__expression] = STATE(657), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [539] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [540] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [541] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [542] = { - [sym__expression] = STATE(659), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [543] = { - [sym_identifier] = ACTIONS(1614), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [544] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_LT_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_GT_EQ] = ACTIONS(1624), - [anon_sym_AMP_EQ] = ACTIONS(1624), - [anon_sym_CARET_EQ] = ACTIONS(1624), - [anon_sym_PIPE_EQ] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PERCENT_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_LT_LT_EQ] = ACTIONS(1584), + [anon_sym_GT_GT_EQ] = ACTIONS(1584), + [anon_sym_AMP_EQ] = ACTIONS(1584), + [anon_sym_CARET_EQ] = ACTIONS(1584), + [anon_sym_PIPE_EQ] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1584), + [anon_sym_AMP_AMP] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [545] = { - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PERCENT_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_LT_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_GT_EQ] = ACTIONS(1588), + [anon_sym_AMP_EQ] = ACTIONS(1588), + [anon_sym_CARET_EQ] = ACTIONS(1588), + [anon_sym_PIPE_EQ] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [546] = { - [anon_sym_COMMA] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1648), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_STAR_EQ] = ACTIONS(1592), + [anon_sym_SLASH_EQ] = ACTIONS(1592), + [anon_sym_PERCENT_EQ] = ACTIONS(1592), + [anon_sym_PLUS_EQ] = ACTIONS(1592), + [anon_sym_DASH_EQ] = ACTIONS(1592), + [anon_sym_LT_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_GT_EQ] = ACTIONS(1592), + [anon_sym_AMP_EQ] = ACTIONS(1592), + [anon_sym_CARET_EQ] = ACTIONS(1592), + [anon_sym_PIPE_EQ] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1592), + [anon_sym_AMP_AMP] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_BANG_EQ] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_EQ] = ACTIONS(1592), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [547] = { - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_EQ] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1650), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [548] = { - [sym_designator] = STATE(676), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1366), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_COLON] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1652), + [anon_sym_STAR_EQ] = ACTIONS(1652), + [anon_sym_SLASH_EQ] = ACTIONS(1652), + [anon_sym_PERCENT_EQ] = ACTIONS(1652), + [anon_sym_PLUS_EQ] = ACTIONS(1652), + [anon_sym_DASH_EQ] = ACTIONS(1652), + [anon_sym_LT_LT_EQ] = ACTIONS(1652), + [anon_sym_GT_GT_EQ] = ACTIONS(1652), + [anon_sym_AMP_EQ] = ACTIONS(1652), + [anon_sym_CARET_EQ] = ACTIONS(1652), + [anon_sym_PIPE_EQ] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1652), + [anon_sym_AMP_AMP] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1654), + [anon_sym_CARET] = ACTIONS(1654), + [anon_sym_EQ_EQ] = ACTIONS(1652), + [anon_sym_BANG_EQ] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_GT] = ACTIONS(1654), + [anon_sym_LT_EQ] = ACTIONS(1652), + [anon_sym_GT_EQ] = ACTIONS(1652), + [anon_sym_LT_LT] = ACTIONS(1654), + [anon_sym_GT_GT] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), + [anon_sym_PERCENT] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [549] = { - [sym__expression] = STATE(677), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_COMMA] = ACTIONS(1656), + [anon_sym_RPAREN] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_EQ] = ACTIONS(1658), + [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_QMARK] = ACTIONS(1656), + [anon_sym_STAR_EQ] = ACTIONS(1656), + [anon_sym_SLASH_EQ] = ACTIONS(1656), + [anon_sym_PERCENT_EQ] = ACTIONS(1656), + [anon_sym_PLUS_EQ] = ACTIONS(1656), + [anon_sym_DASH_EQ] = ACTIONS(1656), + [anon_sym_LT_LT_EQ] = ACTIONS(1656), + [anon_sym_GT_GT_EQ] = ACTIONS(1656), + [anon_sym_AMP_EQ] = ACTIONS(1656), + [anon_sym_CARET_EQ] = ACTIONS(1656), + [anon_sym_PIPE_EQ] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_EQ_EQ] = ACTIONS(1656), + [anon_sym_BANG_EQ] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1658), + [anon_sym_GT] = ACTIONS(1658), + [anon_sym_LT_EQ] = ACTIONS(1656), + [anon_sym_GT_EQ] = ACTIONS(1656), + [anon_sym_LT_LT] = ACTIONS(1658), + [anon_sym_GT_GT] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_SLASH] = ACTIONS(1658), + [anon_sym_PERCENT] = ACTIONS(1658), + [anon_sym_DASH_DASH] = ACTIONS(1656), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1656), + [anon_sym_DASH_GT] = ACTIONS(1656), [sym_comment] = ACTIONS(121), }, [550] = { - [sym__expression] = STATE(678), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1660), [sym_comment] = ACTIONS(121), }, [551] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1654), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1662), [sym_comment] = ACTIONS(121), }, [552] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1656), + [sym__expression] = STATE(638), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [553] = { - [sym__expression] = STATE(681), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COLON] = ACTIONS(1664), [sym_comment] = ACTIONS(121), }, [554] = { - [sym_declaration] = STATE(682), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(683), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(1666), [sym_comment] = ACTIONS(121), }, - [555] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [555] = { + [anon_sym_LPAREN] = ACTIONS(1668), [sym_comment] = ACTIONS(121), }, [556] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [557] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_preproc_include] = STATE(301), + [sym_preproc_def] = STATE(301), + [sym_preproc_function_def] = STATE(301), + [sym_preproc_call] = STATE(301), + [sym_preproc_if_in_compound_statement] = STATE(302), + [sym_preproc_ifdef_in_compound_statement] = STATE(303), + [sym_declaration] = STATE(301), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(301), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(301), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym__pound_endif] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1448), [sym_comment] = ACTIONS(121), }, [558] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1394), + [sym__expression] = STATE(643), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [559] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym__expression] = STATE(644), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [560] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [561] = { - [sym__expression] = STATE(689), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1676), [sym_comment] = ACTIONS(121), }, [562] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(647), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [563] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_declaration] = STATE(648), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(649), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [564] = { - [ts_builtin_sym_end] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1674), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1674), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1674), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1674), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1674), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1674), - [sym_preproc_directive] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_typedef] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_auto] = ACTIONS(1674), - [anon_sym_register] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_restrict] = ACTIONS(1674), - [anon_sym_volatile] = ACTIONS(1674), - [sym_function_specifier] = ACTIONS(1674), - [anon_sym_unsigned] = ACTIONS(1674), - [anon_sym_long] = ACTIONS(1674), - [anon_sym_short] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_goto] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_sizeof] = ACTIONS(1674), - [sym_number_literal] = ACTIONS(1674), - [sym_char_literal] = ACTIONS(1674), - [sym_string_literal] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1676), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [565] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1680), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1680), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1680), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1680), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1680), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1680), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_typedef] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1680), - [anon_sym_auto] = ACTIONS(1680), - [anon_sym_register] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_restrict] = ACTIONS(1680), - [anon_sym_volatile] = ACTIONS(1680), - [sym_function_specifier] = ACTIONS(1680), - [anon_sym_unsigned] = ACTIONS(1680), - [anon_sym_long] = ACTIONS(1680), - [anon_sym_short] = ACTIONS(1680), - [anon_sym_enum] = ACTIONS(1680), - [anon_sym_struct] = ACTIONS(1680), - [anon_sym_union] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_do] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_goto] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_sizeof] = ACTIONS(1680), - [sym_number_literal] = ACTIONS(1680), - [sym_char_literal] = ACTIONS(1680), - [sym_string_literal] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [sym__pound_include] = ACTIONS(1684), + [sym__pound_define] = ACTIONS(1684), + [sym__pound_if] = ACTIONS(1684), + [sym__pound_ifdef] = ACTIONS(1684), + [sym__pound_endif] = ACTIONS(1684), + [sym__pound_else] = ACTIONS(1684), + [sym_preproc_directive] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_typedef] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_auto] = ACTIONS(1684), + [anon_sym_register] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [sym_function_specifier] = ACTIONS(1684), + [anon_sym_unsigned] = ACTIONS(1684), + [anon_sym_long] = ACTIONS(1684), + [anon_sym_short] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_sizeof] = ACTIONS(1684), + [sym_number_literal] = ACTIONS(1684), + [sym_char_literal] = ACTIONS(1684), + [sym_string_literal] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(121), }, [566] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1686), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1684), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1686), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1686), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1686), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1686), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1686), - [sym_preproc_directive] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_auto] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_restrict] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1686), - [sym_function_specifier] = ACTIONS(1686), - [anon_sym_unsigned] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_sizeof] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1686), - [sym_char_literal] = ACTIONS(1686), - [sym_string_literal] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [sym__pound_include] = ACTIONS(1690), + [sym__pound_define] = ACTIONS(1690), + [sym__pound_if] = ACTIONS(1690), + [sym__pound_ifdef] = ACTIONS(1690), + [sym__pound_endif] = ACTIONS(1690), + [sym__pound_else] = ACTIONS(1690), + [sym_preproc_directive] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_typedef] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_auto] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_restrict] = ACTIONS(1690), + [anon_sym_volatile] = ACTIONS(1690), + [sym_function_specifier] = ACTIONS(1690), + [anon_sym_unsigned] = ACTIONS(1690), + [anon_sym_long] = ACTIONS(1690), + [anon_sym_short] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [anon_sym_struct] = ACTIONS(1690), + [anon_sym_union] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_switch] = ACTIONS(1690), + [anon_sym_case] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_goto] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_sizeof] = ACTIONS(1690), + [sym_number_literal] = ACTIONS(1690), + [sym_char_literal] = ACTIONS(1690), + [sym_string_literal] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1692), [sym_comment] = ACTIONS(121), }, [567] = { - [sym_compound_statement] = STATE(698), - [sym_labeled_statement] = STATE(698), - [sym_expression_statement] = STATE(698), - [sym_if_statement] = STATE(698), - [sym_switch_statement] = STATE(698), - [sym_case_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_do_statement] = STATE(698), - [sym_for_statement] = STATE(698), - [sym_return_statement] = STATE(698), - [sym_break_statement] = STATE(698), - [sym_continue_statement] = STATE(698), - [sym_goto_statement] = STATE(698), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym__pound_endif] = ACTIONS(1694), [sym_comment] = ACTIONS(121), }, [568] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1696), + [sym__pound_include] = ACTIONS(1698), + [sym__pound_define] = ACTIONS(1698), + [sym__pound_if] = ACTIONS(1698), + [sym__pound_ifdef] = ACTIONS(1698), + [sym__pound_endif] = ACTIONS(1698), + [sym__pound_else] = ACTIONS(1698), + [sym_preproc_directive] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_typedef] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_auto] = ACTIONS(1698), + [anon_sym_register] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_restrict] = ACTIONS(1698), + [anon_sym_volatile] = ACTIONS(1698), + [sym_function_specifier] = ACTIONS(1698), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_short] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_do] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_goto] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_sizeof] = ACTIONS(1698), + [sym_number_literal] = ACTIONS(1698), + [sym_char_literal] = ACTIONS(1698), + [sym_string_literal] = ACTIONS(1696), + [sym_identifier] = ACTIONS(1700), [sym_comment] = ACTIONS(121), }, [569] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1702), + [sym__pound_include] = ACTIONS(1704), + [sym__pound_define] = ACTIONS(1704), + [sym__pound_if] = ACTIONS(1704), + [sym__pound_ifdef] = ACTIONS(1704), + [sym__pound_endif] = ACTIONS(1704), + [sym__pound_else] = ACTIONS(1704), + [sym_preproc_directive] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_typedef] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [sym_function_specifier] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_goto] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_sizeof] = ACTIONS(1704), + [sym_number_literal] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1704), + [sym_string_literal] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1706), [sym_comment] = ACTIONS(121), }, [570] = { - [sym__expression] = STATE(700), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__pound_endif] = ACTIONS(1708), [sym_comment] = ACTIONS(121), }, [571] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(1710), [sym_comment] = ACTIONS(121), }, [572] = { - [sym__expression] = STATE(702), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(654), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [573] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_LT_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_GT_EQ] = ACTIONS(1624), - [anon_sym_AMP_EQ] = ACTIONS(1624), - [anon_sym_CARET_EQ] = ACTIONS(1624), - [anon_sym_PIPE_EQ] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [574] = { - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_COMMA] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_RBRACK] = ACTIONS(1710), - [anon_sym_typedef] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_auto] = ACTIONS(1712), - [anon_sym_register] = ACTIONS(1712), - [anon_sym_const] = ACTIONS(1712), - [anon_sym_restrict] = ACTIONS(1712), - [anon_sym_volatile] = ACTIONS(1712), - [sym_function_specifier] = ACTIONS(1712), - [anon_sym_COLON] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1710), - [anon_sym_PLUS_PLUS] = ACTIONS(1710), - [anon_sym_sizeof] = ACTIONS(1712), - [sym_number_literal] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1712), - [sym_string_literal] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1714), + [sym_compound_statement] = STATE(662), + [sym_labeled_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_case_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_do_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_return_statement] = STATE(662), + [sym_break_statement] = STATE(662), + [sym_continue_statement] = STATE(662), + [sym_goto_statement] = STATE(662), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [575] = { - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [576] = { - [sym_enumerator] = STATE(704), - [anon_sym_RBRACE] = ACTIONS(1718), - [sym_identifier] = ACTIONS(624), + [sym__expression] = STATE(663), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [577] = { - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_COLON] = ACTIONS(1720), + [sym__expression] = STATE(664), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [578] = { - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_typedef] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1724), - [anon_sym_auto] = ACTIONS(1724), - [anon_sym_register] = ACTIONS(1724), - [anon_sym_const] = ACTIONS(1724), - [anon_sym_restrict] = ACTIONS(1724), - [anon_sym_volatile] = ACTIONS(1724), - [sym_function_specifier] = ACTIONS(1724), - [anon_sym_unsigned] = ACTIONS(1724), - [anon_sym_long] = ACTIONS(1724), - [anon_sym_short] = ACTIONS(1724), - [anon_sym_enum] = ACTIONS(1724), - [anon_sym_struct] = ACTIONS(1724), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_COLON] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1726), + [sym__expression] = STATE(665), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [579] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(666), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [580] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(667), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [581] = { - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1730), + [sym__expression] = STATE(668), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [582] = { - [sym_parameter_list] = STATE(425), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1732), + [sym__expression] = STATE(669), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [583] = { - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_COLON] = ACTIONS(1734), + [sym__expression] = STATE(670), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [584] = { - [sym__expression] = STATE(709), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(671), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [585] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(672), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [586] = { - [sym__field_declarator] = STATE(710), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_field_declarator] = STATE(246), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(644), - [sym_identifier] = ACTIONS(1059), + [sym__expression] = STATE(673), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [587] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [588] = { - [anon_sym_RPAREN] = ACTIONS(1738), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [589] = { - [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1726), [sym_comment] = ACTIONS(121), }, [590] = { - [anon_sym_LPAREN] = ACTIONS(1742), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [591] = { - [sym__expression] = STATE(714), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1728), + [sym__pound_include] = ACTIONS(1730), + [sym__pound_define] = ACTIONS(1730), + [sym__pound_if] = ACTIONS(1730), + [sym__pound_ifdef] = ACTIONS(1730), + [sym__pound_endif] = ACTIONS(1730), + [sym__pound_else] = ACTIONS(1730), + [sym_preproc_directive] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_auto] = ACTIONS(1730), + [anon_sym_register] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_restrict] = ACTIONS(1730), + [anon_sym_volatile] = ACTIONS(1730), + [sym_function_specifier] = ACTIONS(1730), + [anon_sym_unsigned] = ACTIONS(1730), + [anon_sym_long] = ACTIONS(1730), + [anon_sym_short] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1730), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_case] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_goto] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_sizeof] = ACTIONS(1730), + [sym_number_literal] = ACTIONS(1730), + [sym_char_literal] = ACTIONS(1730), + [sym_string_literal] = ACTIONS(1728), + [sym_identifier] = ACTIONS(1732), [sym_comment] = ACTIONS(121), }, [592] = { - [anon_sym_COLON] = ACTIONS(1744), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [593] = { - [anon_sym_LPAREN] = ACTIONS(1746), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_COLON] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [594] = { - [anon_sym_LPAREN] = ACTIONS(1748), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [595] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [596] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1758), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_COLON] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [597] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_COLON] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [598] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1760), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_COLON] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PERCENT_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_LT_LT_EQ] = ACTIONS(1584), + [anon_sym_GT_GT_EQ] = ACTIONS(1584), + [anon_sym_AMP_EQ] = ACTIONS(1584), + [anon_sym_CARET_EQ] = ACTIONS(1584), + [anon_sym_PIPE_EQ] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1584), + [anon_sym_AMP_AMP] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [599] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PERCENT_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_LT_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_GT_EQ] = ACTIONS(1588), + [anon_sym_AMP_EQ] = ACTIONS(1588), + [anon_sym_CARET_EQ] = ACTIONS(1588), + [anon_sym_PIPE_EQ] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [600] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_COLON] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_STAR_EQ] = ACTIONS(1592), + [anon_sym_SLASH_EQ] = ACTIONS(1592), + [anon_sym_PERCENT_EQ] = ACTIONS(1592), + [anon_sym_PLUS_EQ] = ACTIONS(1592), + [anon_sym_DASH_EQ] = ACTIONS(1592), + [anon_sym_LT_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_GT_EQ] = ACTIONS(1592), + [anon_sym_AMP_EQ] = ACTIONS(1592), + [anon_sym_CARET_EQ] = ACTIONS(1592), + [anon_sym_PIPE_EQ] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1592), + [anon_sym_AMP_AMP] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_BANG_EQ] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_EQ] = ACTIONS(1592), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [601] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_COLON] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [602] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [603] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [604] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [605] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1522), [sym_comment] = ACTIONS(121), }, [606] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [607] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1764), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1762), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1764), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1764), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1764), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1764), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1764), - [sym_preproc_directive] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_typedef] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_auto] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_restrict] = ACTIONS(1764), - [anon_sym_volatile] = ACTIONS(1764), - [sym_function_specifier] = ACTIONS(1764), - [anon_sym_unsigned] = ACTIONS(1764), - [anon_sym_long] = ACTIONS(1764), - [anon_sym_short] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [anon_sym_struct] = ACTIONS(1764), - [anon_sym_union] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_switch] = ACTIONS(1764), - [anon_sym_case] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_goto] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_TILDE] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_sizeof] = ACTIONS(1764), - [sym_number_literal] = ACTIONS(1764), - [sym_char_literal] = ACTIONS(1764), - [sym_string_literal] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1766), + [sym__expression] = STATE(682), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [609] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_COLON] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [610] = { - [sym__expression] = STATE(721), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(684), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1774), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1772), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1774), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1774), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1774), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1774), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1774), - [sym_preproc_directive] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [sym_function_specifier] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_else] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [sym_string_literal] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1776), + [sym__expression] = STATE(686), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [612] = { - [sym_compound_statement] = STATE(729), - [sym_labeled_statement] = STATE(729), - [sym_expression_statement] = STATE(729), - [sym_if_statement] = STATE(729), - [sym_switch_statement] = STATE(729), - [sym_case_statement] = STATE(729), - [sym_while_statement] = STATE(729), - [sym_do_statement] = STATE(729), - [sym_for_statement] = STATE(729), - [sym_return_statement] = STATE(729), - [sym_break_statement] = STATE(729), - [sym_continue_statement] = STATE(729), - [sym_goto_statement] = STATE(729), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [613] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [sym__expression] = STATE(688), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [614] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [615] = { - [sym__expression] = STATE(731), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(689), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [616] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(1758), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_COLON] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1758), + [anon_sym_STAR_EQ] = ACTIONS(1758), + [anon_sym_SLASH_EQ] = ACTIONS(1758), + [anon_sym_PERCENT_EQ] = ACTIONS(1758), + [anon_sym_PLUS_EQ] = ACTIONS(1758), + [anon_sym_DASH_EQ] = ACTIONS(1758), + [anon_sym_LT_LT_EQ] = ACTIONS(1758), + [anon_sym_GT_GT_EQ] = ACTIONS(1758), + [anon_sym_AMP_EQ] = ACTIONS(1758), + [anon_sym_CARET_EQ] = ACTIONS(1758), + [anon_sym_PIPE_EQ] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1758), + [anon_sym_BANG_EQ] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1758), + [anon_sym_GT_EQ] = ACTIONS(1758), + [anon_sym_LT_LT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1758), + [anon_sym_DASH_GT] = ACTIONS(1758), [sym_comment] = ACTIONS(121), }, [617] = { - [sym__expression] = STATE(733), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1764), [sym_comment] = ACTIONS(121), }, [618] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_COLON] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DASH_GT] = ACTIONS(1766), [sym_comment] = ACTIONS(121), }, [619] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [sym__expression] = STATE(692), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [620] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(737), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [621] = { - [sym__expression] = STATE(738), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(693), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [622] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), [sym_comment] = ACTIONS(121), }, [623] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), [sym_comment] = ACTIONS(121), }, [624] = { - [sym__expression] = STATE(740), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [625] = { - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), [sym_comment] = ACTIONS(121), }, [626] = { - [anon_sym_COMMA] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), + [sym_designator] = STATE(498), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(957), [sym_comment] = ACTIONS(121), }, [627] = { - [anon_sym_COMMA] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(1808), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [628] = { - [sym__declaration_specifiers] = STATE(322), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_declaration] = STATE(741), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(479), + [sym__expression] = STATE(695), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [629] = { - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_COLON] = ACTIONS(1812), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [630] = { - [sym__declarator] = STATE(84), - [sym__abstract_declarator] = STATE(360), - [sym_pointer_declarator] = STATE(44), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(524), - [sym_identifier] = ACTIONS(415), + [sym__expression] = STATE(696), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [631] = { - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [sym_identifier] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_COLON] = ACTIONS(1792), [sym_comment] = ACTIONS(121), }, [632] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_typedef] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_auto] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_restrict] = ACTIONS(1794), + [anon_sym_volatile] = ACTIONS(1794), + [sym_function_specifier] = ACTIONS(1794), + [anon_sym_unsigned] = ACTIONS(1794), + [anon_sym_long] = ACTIONS(1794), + [anon_sym_short] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_struct] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1798), [sym_comment] = ACTIONS(121), }, [633] = { - [anon_sym_RPAREN] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_COMMA] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), [sym_comment] = ACTIONS(121), }, [634] = { - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [635] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(697), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [636] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1821), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(698), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [637] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(699), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [638] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1806), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [639] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1808), [sym_comment] = ACTIONS(121), }, [640] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(702), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [641] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(703), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(704), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [642] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [643] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [644] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [645] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1676), [sym_comment] = ACTIONS(121), }, [646] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [647] = { - [sym__expression] = STATE(744), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [648] = { - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_RBRACK] = ACTIONS(1825), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_COLON] = ACTIONS(1825), - [anon_sym_QMARK] = ACTIONS(1825), - [anon_sym_STAR_EQ] = ACTIONS(1825), - [anon_sym_SLASH_EQ] = ACTIONS(1825), - [anon_sym_PERCENT_EQ] = ACTIONS(1825), - [anon_sym_PLUS_EQ] = ACTIONS(1825), - [anon_sym_DASH_EQ] = ACTIONS(1825), - [anon_sym_LT_LT_EQ] = ACTIONS(1825), - [anon_sym_GT_GT_EQ] = ACTIONS(1825), - [anon_sym_AMP_EQ] = ACTIONS(1825), - [anon_sym_CARET_EQ] = ACTIONS(1825), - [anon_sym_PIPE_EQ] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1825), - [anon_sym_BANG_EQ] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DOT] = ACTIONS(1825), - [anon_sym_DASH_GT] = ACTIONS(1825), + [sym__expression] = STATE(710), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [649] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(449), - [anon_sym_SLASH_EQ] = ACTIONS(449), - [anon_sym_PERCENT_EQ] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(449), - [anon_sym_DASH_EQ] = ACTIONS(449), - [anon_sym_LT_LT_EQ] = ACTIONS(449), - [anon_sym_GT_GT_EQ] = ACTIONS(449), - [anon_sym_AMP_EQ] = ACTIONS(449), - [anon_sym_CARET_EQ] = ACTIONS(449), - [anon_sym_PIPE_EQ] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE] = ACTIONS(457), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [650] = { - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [651] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1824), + [sym__pound_include] = ACTIONS(1826), + [sym__pound_define] = ACTIONS(1826), + [sym__pound_if] = ACTIONS(1826), + [sym__pound_ifdef] = ACTIONS(1826), + [sym__pound_endif] = ACTIONS(1826), + [sym__pound_else] = ACTIONS(1826), + [sym_preproc_directive] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_typedef] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_auto] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_restrict] = ACTIONS(1826), + [anon_sym_volatile] = ACTIONS(1826), + [sym_function_specifier] = ACTIONS(1826), + [anon_sym_unsigned] = ACTIONS(1826), + [anon_sym_long] = ACTIONS(1826), + [anon_sym_short] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_case] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_goto] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_TILDE] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_sizeof] = ACTIONS(1826), + [sym_number_literal] = ACTIONS(1826), + [sym_char_literal] = ACTIONS(1826), + [sym_string_literal] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1828), [sym_comment] = ACTIONS(121), }, [652] = { - [anon_sym_LF] = ACTIONS(1837), - [sym_preproc_arg] = ACTIONS(1837), - [sym_comment] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(1830), + [sym__pound_include] = ACTIONS(1832), + [sym__pound_define] = ACTIONS(1832), + [sym__pound_if] = ACTIONS(1832), + [sym__pound_ifdef] = ACTIONS(1832), + [sym__pound_endif] = ACTIONS(1832), + [sym__pound_else] = ACTIONS(1832), + [sym_preproc_directive] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_typedef] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_auto] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_restrict] = ACTIONS(1832), + [anon_sym_volatile] = ACTIONS(1832), + [sym_function_specifier] = ACTIONS(1832), + [anon_sym_unsigned] = ACTIONS(1832), + [anon_sym_long] = ACTIONS(1832), + [anon_sym_short] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_goto] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_sizeof] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [sym_string_literal] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1834), + [sym_comment] = ACTIONS(121), }, [653] = { - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [654] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1841), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(1836), [sym_comment] = ACTIONS(121), }, [655] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1838), [sym_comment] = ACTIONS(121), }, [656] = { - [anon_sym_RPAREN] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1840), [sym_comment] = ACTIONS(121), }, [657] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(715), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [658] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(749), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(1842), [sym_comment] = ACTIONS(121), }, [659] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_STAR_EQ] = ACTIONS(806), - [anon_sym_SLASH_EQ] = ACTIONS(806), - [anon_sym_PERCENT_EQ] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(806), - [anon_sym_DASH_EQ] = ACTIONS(806), - [anon_sym_LT_LT_EQ] = ACTIONS(806), - [anon_sym_GT_GT_EQ] = ACTIONS(806), - [anon_sym_AMP_EQ] = ACTIONS(806), - [anon_sym_CARET_EQ] = ACTIONS(806), - [anon_sym_PIPE_EQ] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(806), - [anon_sym_BANG_EQ] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(806), - [anon_sym_GT_EQ] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1844), [sym_comment] = ACTIONS(121), }, [660] = { - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1846), [sym_comment] = ACTIONS(121), }, [661] = { - [sym__expression] = STATE(337), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [662] = { - [sym__expression] = STATE(750), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [663] = { - [sym__expression] = STATE(751), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [664] = { - [sym__expression] = STATE(752), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1858), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [665] = { - [sym__expression] = STATE(753), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [666] = { - [sym__expression] = STATE(754), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [667] = { - [sym__expression] = STATE(755), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [668] = { - [sym__expression] = STATE(756), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [669] = { - [sym__expression] = STATE(757), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PERCENT_EQ] = ACTIONS(1576), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_LT_LT_EQ] = ACTIONS(1576), + [anon_sym_GT_GT_EQ] = ACTIONS(1576), + [anon_sym_AMP_EQ] = ACTIONS(1576), + [anon_sym_CARET_EQ] = ACTIONS(1576), + [anon_sym_PIPE_EQ] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [670] = { - [sym__expression] = STATE(758), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PERCENT_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_LT_LT_EQ] = ACTIONS(1584), + [anon_sym_GT_GT_EQ] = ACTIONS(1584), + [anon_sym_AMP_EQ] = ACTIONS(1584), + [anon_sym_CARET_EQ] = ACTIONS(1584), + [anon_sym_PIPE_EQ] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1584), + [anon_sym_AMP_AMP] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1584), + [anon_sym_BANG_EQ] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [671] = { - [sym__expression] = STATE(759), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PERCENT_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_LT_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_GT_EQ] = ACTIONS(1588), + [anon_sym_AMP_EQ] = ACTIONS(1588), + [anon_sym_CARET_EQ] = ACTIONS(1588), + [anon_sym_PIPE_EQ] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [672] = { - [sym__expression] = STATE(760), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_STAR_EQ] = ACTIONS(1592), + [anon_sym_SLASH_EQ] = ACTIONS(1592), + [anon_sym_PERCENT_EQ] = ACTIONS(1592), + [anon_sym_PLUS_EQ] = ACTIONS(1592), + [anon_sym_DASH_EQ] = ACTIONS(1592), + [anon_sym_LT_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_GT_EQ] = ACTIONS(1592), + [anon_sym_AMP_EQ] = ACTIONS(1592), + [anon_sym_CARET_EQ] = ACTIONS(1592), + [anon_sym_PIPE_EQ] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1592), + [anon_sym_AMP_AMP] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_EQ_EQ] = ACTIONS(1592), + [anon_sym_BANG_EQ] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_LT_EQ] = ACTIONS(1592), + [anon_sym_GT_EQ] = ACTIONS(1592), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [673] = { - [sym__expression] = STATE(762), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(763), - [sym_designator] = STATE(547), - [sym_concatenated_string] = STATE(35), - [aux_sym__initializer_list_contents_repeat1] = STATE(764), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [674] = { - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(1853), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(1851), - [anon_sym_STAR_EQ] = ACTIONS(1851), - [anon_sym_SLASH_EQ] = ACTIONS(1851), - [anon_sym_PERCENT_EQ] = ACTIONS(1851), - [anon_sym_PLUS_EQ] = ACTIONS(1851), - [anon_sym_DASH_EQ] = ACTIONS(1851), - [anon_sym_LT_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_GT_EQ] = ACTIONS(1851), - [anon_sym_AMP_EQ] = ACTIONS(1851), - [anon_sym_CARET_EQ] = ACTIONS(1851), - [anon_sym_PIPE_EQ] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_DASH_GT] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1860), + [sym__pound_include] = ACTIONS(1862), + [sym__pound_define] = ACTIONS(1862), + [sym__pound_if] = ACTIONS(1862), + [sym__pound_ifdef] = ACTIONS(1862), + [sym__pound_endif] = ACTIONS(1862), + [sym__pound_else] = ACTIONS(1862), + [sym_preproc_directive] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_typedef] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_auto] = ACTIONS(1862), + [anon_sym_register] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_restrict] = ACTIONS(1862), + [anon_sym_volatile] = ACTIONS(1862), + [sym_function_specifier] = ACTIONS(1862), + [anon_sym_unsigned] = ACTIONS(1862), + [anon_sym_long] = ACTIONS(1862), + [anon_sym_short] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_goto] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_TILDE] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_DASH_DASH] = ACTIONS(1860), + [anon_sym_PLUS_PLUS] = ACTIONS(1860), + [anon_sym_sizeof] = ACTIONS(1862), + [sym_number_literal] = ACTIONS(1862), + [sym_char_literal] = ACTIONS(1862), + [sym_string_literal] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1864), [sym_comment] = ACTIONS(121), }, [675] = { - [sym__expression] = STATE(762), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(763), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1750), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [676] = { - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), + [sym__expression] = STATE(722), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [677] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1870), + [sym__pound_include] = ACTIONS(1872), + [sym__pound_define] = ACTIONS(1872), + [sym__pound_if] = ACTIONS(1872), + [sym__pound_ifdef] = ACTIONS(1872), + [sym__pound_endif] = ACTIONS(1872), + [sym__pound_else] = ACTIONS(1872), + [sym_preproc_directive] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_auto] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_restrict] = ACTIONS(1872), + [anon_sym_volatile] = ACTIONS(1872), + [sym_function_specifier] = ACTIONS(1872), + [anon_sym_unsigned] = ACTIONS(1872), + [anon_sym_long] = ACTIONS(1872), + [anon_sym_short] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1872), + [sym_number_literal] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [sym_string_literal] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1874), [sym_comment] = ACTIONS(121), }, [678] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(730), + [sym_labeled_statement] = STATE(730), + [sym_expression_statement] = STATE(730), + [sym_if_statement] = STATE(730), + [sym_switch_statement] = STATE(730), + [sym_case_statement] = STATE(730), + [sym_while_statement] = STATE(730), + [sym_do_statement] = STATE(730), + [sym_for_statement] = STATE(730), + [sym_return_statement] = STATE(730), + [sym_break_statement] = STATE(730), + [sym_continue_statement] = STATE(730), + [sym_goto_statement] = STATE(730), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [679] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1656), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [680] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [681] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(732), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [682] = { - [sym__expression] = STATE(769), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [683] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(734), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [684] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [685] = { - [sym_compound_statement] = STATE(778), - [sym_labeled_statement] = STATE(778), - [sym_expression_statement] = STATE(778), - [sym_if_statement] = STATE(778), - [sym_switch_statement] = STATE(778), - [sym_case_statement] = STATE(778), - [sym_while_statement] = STATE(778), - [sym_do_statement] = STATE(778), - [sym_for_statement] = STATE(778), - [sym_return_statement] = STATE(778), - [sym_break_statement] = STATE(778), - [sym_continue_statement] = STATE(778), - [sym_goto_statement] = STATE(778), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [686] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(738), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [687] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym__expression] = STATE(739), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [688] = { - [sym__expression] = STATE(780), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [689] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [690] = { - [sym__expression] = STATE(782), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(741), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [691] = { - [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_COMMA] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_QMARK] = ACTIONS(1902), + [anon_sym_STAR_EQ] = ACTIONS(1902), + [anon_sym_SLASH_EQ] = ACTIONS(1902), + [anon_sym_PERCENT_EQ] = ACTIONS(1902), + [anon_sym_PLUS_EQ] = ACTIONS(1902), + [anon_sym_DASH_EQ] = ACTIONS(1902), + [anon_sym_LT_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_GT_EQ] = ACTIONS(1902), + [anon_sym_AMP_EQ] = ACTIONS(1902), + [anon_sym_CARET_EQ] = ACTIONS(1902), + [anon_sym_PIPE_EQ] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_CARET] = ACTIONS(1904), + [anon_sym_EQ_EQ] = ACTIONS(1902), + [anon_sym_BANG_EQ] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_GT] = ACTIONS(1904), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_LT_LT] = ACTIONS(1904), + [anon_sym_GT_GT] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_PERCENT] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_DOT] = ACTIONS(1902), + [anon_sym_DASH_GT] = ACTIONS(1902), [sym_comment] = ACTIONS(121), }, [692] = { - [anon_sym_LPAREN] = ACTIONS(1887), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(891), + [anon_sym_SLASH_EQ] = ACTIONS(891), + [anon_sym_PERCENT_EQ] = ACTIONS(891), + [anon_sym_PLUS_EQ] = ACTIONS(891), + [anon_sym_DASH_EQ] = ACTIONS(891), + [anon_sym_LT_LT_EQ] = ACTIONS(891), + [anon_sym_GT_GT_EQ] = ACTIONS(891), + [anon_sym_AMP_EQ] = ACTIONS(891), + [anon_sym_CARET_EQ] = ACTIONS(891), + [anon_sym_PIPE_EQ] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [693] = { - [sym__expression] = STATE(785), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [694] = { - [anon_sym_COLON] = ACTIONS(1889), + [sym__expression] = STATE(742), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(743), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [695] = { - [anon_sym_LPAREN] = ACTIONS(1891), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [696] = { - [anon_sym_LPAREN] = ACTIONS(1893), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [697] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1895), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [698] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [699] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [700] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(792), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1808), [sym_comment] = ACTIONS(121), }, [701] = { - [sym__expression] = STATE(793), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [702] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [703] = { - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_RPAREN] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), - [anon_sym_typedef] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_auto] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_restrict] = ACTIONS(1905), - [anon_sym_volatile] = ACTIONS(1905), - [sym_function_specifier] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_sizeof] = ACTIONS(1905), - [sym_number_literal] = ACTIONS(1905), - [sym_char_literal] = ACTIONS(1905), - [sym_string_literal] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1907), + [sym__expression] = STATE(748), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [704] = { - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [705] = { - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_typedef] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_auto] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [sym_function_specifier] = ACTIONS(1913), - [anon_sym_unsigned] = ACTIONS(1913), - [anon_sym_long] = ACTIONS(1913), - [anon_sym_short] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_union] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [706] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_case_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_goto_statement] = STATE(757), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [707] = { - [sym__expression] = STATE(796), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [708] = { - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1919), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [709] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(759), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [710] = { - [sym_parameter_list] = STATE(425), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1923), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [711] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(761), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [712] = { - [sym__expression] = STATE(798), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [713] = { - [sym__expression] = STATE(799), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(762), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [714] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(763), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [715] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1931), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [716] = { - [sym__expression] = STATE(802), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1942), [sym_comment] = ACTIONS(121), }, [717] = { - [sym_declaration] = STATE(803), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(804), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym__expression] = STATE(766), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [718] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym_declaration] = STATE(767), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(768), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [719] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [720] = { - [sym__expression] = STATE(806), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [721] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1829), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(770), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [722] = { - [anon_sym_LPAREN] = ACTIONS(1935), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [723] = { - [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1946), [sym_comment] = ACTIONS(121), }, [724] = { - [sym__expression] = STATE(809), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1948), [sym_comment] = ACTIONS(121), }, [725] = { - [anon_sym_COLON] = ACTIONS(1939), + [sym__expression] = STATE(773), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [726] = { - [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_COLON] = ACTIONS(1950), [sym_comment] = ACTIONS(121), }, [727] = { - [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1952), [sym_comment] = ACTIONS(121), }, [728] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1945), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(1954), [sym_comment] = ACTIONS(121), }, [729] = { - [anon_sym_else] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1956), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [730] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [anon_sym_else] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1850), [sym_comment] = ACTIONS(121), }, [731] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(816), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [732] = { - [sym__expression] = STATE(817), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(780), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [733] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(781), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(1953), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1953), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1955), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_typedef] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [sym_function_specifier] = ACTIONS(1955), - [anon_sym_unsigned] = ACTIONS(1955), - [anon_sym_long] = ACTIONS(1955), - [anon_sym_short] = ACTIONS(1955), - [anon_sym_enum] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_union] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1955), - [anon_sym_default] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_goto] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_BANG] = ACTIONS(1953), - [anon_sym_TILDE] = ACTIONS(1953), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_sizeof] = ACTIONS(1955), - [sym_number_literal] = ACTIONS(1955), - [sym_char_literal] = ACTIONS(1955), - [sym_string_literal] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1957), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [735] = { - [ts_builtin_sym_end] = ACTIONS(1959), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1961), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1959), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1961), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1961), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1961), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1961), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1961), - [sym_preproc_directive] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1959), - [anon_sym_typedef] = ACTIONS(1961), - [anon_sym_static] = ACTIONS(1961), - [anon_sym_auto] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [anon_sym_restrict] = ACTIONS(1961), - [anon_sym_volatile] = ACTIONS(1961), - [sym_function_specifier] = ACTIONS(1961), - [anon_sym_unsigned] = ACTIONS(1961), - [anon_sym_long] = ACTIONS(1961), - [anon_sym_short] = ACTIONS(1961), - [anon_sym_enum] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1961), - [anon_sym_union] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_switch] = ACTIONS(1961), - [anon_sym_case] = ACTIONS(1961), - [anon_sym_default] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_goto] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(1961), - [sym_number_literal] = ACTIONS(1961), - [sym_char_literal] = ACTIONS(1961), - [sym_string_literal] = ACTIONS(1959), - [sym_identifier] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1964), + [sym__pound_include] = ACTIONS(1966), + [sym__pound_define] = ACTIONS(1966), + [sym__pound_if] = ACTIONS(1966), + [sym__pound_ifdef] = ACTIONS(1966), + [sym__pound_endif] = ACTIONS(1966), + [sym__pound_else] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1964), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_auto] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [sym_function_specifier] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_TILDE] = ACTIONS(1964), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1964), + [anon_sym_PLUS_PLUS] = ACTIONS(1964), + [anon_sym_sizeof] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1966), + [sym_char_literal] = ACTIONS(1966), + [sym_string_literal] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1968), [sym_comment] = ACTIONS(121), }, [736] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(1970), + [sym__pound_include] = ACTIONS(1972), + [sym__pound_define] = ACTIONS(1972), + [sym__pound_if] = ACTIONS(1972), + [sym__pound_ifdef] = ACTIONS(1972), + [sym__pound_endif] = ACTIONS(1972), + [sym__pound_else] = ACTIONS(1972), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [sym_function_specifier] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [sym_string_literal] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1974), [sym_comment] = ACTIONS(121), }, [737] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1965), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [738] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(821), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1976), [sym_comment] = ACTIONS(121), }, [739] = { - [sym__expression] = STATE(822), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(785), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [740] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(786), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [741] = { - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [742] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [743] = { - [sym__expression] = STATE(823), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), [sym_comment] = ACTIONS(121), }, [744] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(794), + [sym_labeled_statement] = STATE(794), + [sym_expression_statement] = STATE(794), + [sym_if_statement] = STATE(794), + [sym_switch_statement] = STATE(794), + [sym_case_statement] = STATE(794), + [sym_while_statement] = STATE(794), + [sym_do_statement] = STATE(794), + [sym_for_statement] = STATE(794), + [sym_return_statement] = STATE(794), + [sym_break_statement] = STATE(794), + [sym_continue_statement] = STATE(794), + [sym_goto_statement] = STATE(794), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [745] = { - [anon_sym_COMMA] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1975), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [746] = { - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [747] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(796), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [748] = { - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_EQ] = ACTIONS(1979), - [anon_sym_DOT] = ACTIONS(1979), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [749] = { - [anon_sym_RPAREN] = ACTIONS(1981), + [sym__expression] = STATE(798), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [750] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_LT_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_GT_EQ] = ACTIONS(1624), - [anon_sym_AMP_EQ] = ACTIONS(1624), - [anon_sym_CARET_EQ] = ACTIONS(1624), - [anon_sym_PIPE_EQ] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2000), [sym_comment] = ACTIONS(121), }, [751] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2002), [sym_comment] = ACTIONS(121), }, [752] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(801), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [753] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(2004), [sym_comment] = ACTIONS(121), }, [754] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2006), [sym_comment] = ACTIONS(121), }, [755] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(121), }, [756] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2010), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [757] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym__pound_endif] = ACTIONS(1852), + [sym__pound_else] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [758] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [759] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(808), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [760] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_STAR_EQ] = ACTIONS(1278), - [anon_sym_SLASH_EQ] = ACTIONS(1278), - [anon_sym_PERCENT_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1278), - [anon_sym_DASH_EQ] = ACTIONS(1278), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1278), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(809), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [761] = { - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_RBRACK] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1985), - [anon_sym_STAR_EQ] = ACTIONS(1985), - [anon_sym_SLASH_EQ] = ACTIONS(1985), - [anon_sym_PERCENT_EQ] = ACTIONS(1985), - [anon_sym_PLUS_EQ] = ACTIONS(1985), - [anon_sym_DASH_EQ] = ACTIONS(1985), - [anon_sym_LT_LT_EQ] = ACTIONS(1985), - [anon_sym_GT_GT_EQ] = ACTIONS(1985), - [anon_sym_AMP_EQ] = ACTIONS(1985), - [anon_sym_CARET_EQ] = ACTIONS(1985), - [anon_sym_PIPE_EQ] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1985), - [anon_sym_GT_EQ] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1985), - [anon_sym_DASH_GT] = ACTIONS(1985), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [762] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_LT_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_GT_EQ] = ACTIONS(1624), - [anon_sym_AMP_EQ] = ACTIONS(1624), - [anon_sym_CARET_EQ] = ACTIONS(1624), - [anon_sym_PIPE_EQ] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [763] = { - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [764] = { - [sym_designator] = STATE(676), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1991), - [anon_sym_DOT] = ACTIONS(1366), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1942), [sym_comment] = ACTIONS(121), }, [765] = { - [sym_compound_statement] = STATE(834), - [sym_labeled_statement] = STATE(834), - [sym_expression_statement] = STATE(834), - [sym_if_statement] = STATE(834), - [sym_switch_statement] = STATE(834), - [sym_case_statement] = STATE(834), - [sym_while_statement] = STATE(834), - [sym_do_statement] = STATE(834), - [sym_for_statement] = STATE(834), - [sym_return_statement] = STATE(834), - [sym_break_statement] = STATE(834), - [sym_continue_statement] = STATE(834), - [sym_goto_statement] = STATE(834), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [766] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [767] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym__expression] = STATE(815), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [768] = { - [sym__expression] = STATE(836), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [769] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2028), + [sym__pound_include] = ACTIONS(2030), + [sym__pound_define] = ACTIONS(2030), + [sym__pound_if] = ACTIONS(2030), + [sym__pound_ifdef] = ACTIONS(2030), + [sym__pound_endif] = ACTIONS(2030), + [sym__pound_else] = ACTIONS(2030), + [sym_preproc_directive] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_typedef] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_auto] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_restrict] = ACTIONS(2030), + [anon_sym_volatile] = ACTIONS(2030), + [sym_function_specifier] = ACTIONS(2030), + [anon_sym_unsigned] = ACTIONS(2030), + [anon_sym_long] = ACTIONS(2030), + [anon_sym_short] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_switch] = ACTIONS(2030), + [anon_sym_case] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_goto] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2030), + [sym_char_literal] = ACTIONS(2030), + [sym_string_literal] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2032), [sym_comment] = ACTIONS(121), }, [770] = { - [sym__expression] = STATE(838), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [771] = { - [anon_sym_LPAREN] = ACTIONS(2011), + [sym__expression] = STATE(817), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [772] = { - [anon_sym_LPAREN] = ACTIONS(2013), + [sym__expression] = STATE(818), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [773] = { - [sym__expression] = STATE(841), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(2034), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [774] = { - [anon_sym_COLON] = ACTIONS(2015), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2036), [sym_comment] = ACTIONS(121), }, [775] = { - [anon_sym_LPAREN] = ACTIONS(2017), + [sym__expression] = STATE(821), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [776] = { - [anon_sym_LPAREN] = ACTIONS(2019), + [sym_declaration] = STATE(822), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(823), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [777] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [778] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [779] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [780] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(848), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2040), [sym_comment] = ACTIONS(121), }, [781] = { - [sym__expression] = STATE(849), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(825), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [782] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(826), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [783] = { - [sym__expression] = STATE(851), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(2042), + [sym__pound_include] = ACTIONS(2044), + [sym__pound_define] = ACTIONS(2044), + [sym__pound_if] = ACTIONS(2044), + [sym__pound_ifdef] = ACTIONS(2044), + [sym__pound_endif] = ACTIONS(2044), + [sym__pound_else] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [sym_function_specifier] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_else] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2044), + [sym_char_literal] = ACTIONS(2044), + [sym_string_literal] = ACTIONS(2042), + [sym_identifier] = ACTIONS(2046), [sym_comment] = ACTIONS(121), }, [784] = { - [sym__expression] = STATE(852), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [785] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(2029), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2048), [sym_comment] = ACTIONS(121), }, [786] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2031), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(829), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [787] = { - [sym__expression] = STATE(855), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(2050), [sym_comment] = ACTIONS(121), }, [788] = { - [sym_declaration] = STATE(856), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(857), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(2052), [sym_comment] = ACTIONS(121), }, [789] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym__expression] = STATE(832), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [790] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(2054), [sym_comment] = ACTIONS(121), }, [791] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(2056), [sym_comment] = ACTIONS(121), }, [792] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2058), [sym_comment] = ACTIONS(121), }, [793] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(859), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2060), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [794] = { - [sym__expression] = STATE(860), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym__pound_endif] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(2062), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [795] = { - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_typedef] = ACTIONS(2039), - [anon_sym_static] = ACTIONS(2039), - [anon_sym_auto] = ACTIONS(2039), - [anon_sym_register] = ACTIONS(2039), - [anon_sym_const] = ACTIONS(2039), - [anon_sym_restrict] = ACTIONS(2039), - [anon_sym_volatile] = ACTIONS(2039), - [sym_function_specifier] = ACTIONS(2039), - [anon_sym_unsigned] = ACTIONS(2039), - [anon_sym_long] = ACTIONS(2039), - [anon_sym_short] = ACTIONS(2039), - [anon_sym_enum] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2039), - [anon_sym_union] = ACTIONS(2039), - [anon_sym_COLON] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2041), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [796] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(839), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [797] = { - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_COLON] = ACTIONS(2045), + [sym__expression] = STATE(840), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [798] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [799] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(842), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [800] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1931), + [sym__expression] = STATE(843), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [801] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(2068), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [802] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2070), [sym_comment] = ACTIONS(121), }, [803] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [804] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(847), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(848), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [805] = { - [ts_builtin_sym_end] = ACTIONS(2057), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2059), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2057), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2059), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2059), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2059), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2059), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_typedef] = ACTIONS(2059), - [anon_sym_static] = ACTIONS(2059), - [anon_sym_auto] = ACTIONS(2059), - [anon_sym_register] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(2059), - [anon_sym_volatile] = ACTIONS(2059), - [sym_function_specifier] = ACTIONS(2059), - [anon_sym_unsigned] = ACTIONS(2059), - [anon_sym_long] = ACTIONS(2059), - [anon_sym_short] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_switch] = ACTIONS(2059), - [anon_sym_case] = ACTIONS(2059), - [anon_sym_default] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_sizeof] = ACTIONS(2059), - [sym_number_literal] = ACTIONS(2059), - [sym_char_literal] = ACTIONS(2059), - [sym_string_literal] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2061), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [806] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [807] = { - [sym__expression] = STATE(868), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [808] = { - [sym__expression] = STATE(869), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2074), [sym_comment] = ACTIONS(121), }, [809] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(2063), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(850), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [810] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2065), + [sym__expression] = STATE(851), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [811] = { - [sym__expression] = STATE(872), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(852), + [sym_labeled_statement] = STATE(852), + [sym_expression_statement] = STATE(852), + [sym_if_statement] = STATE(852), + [sym_switch_statement] = STATE(852), + [sym_case_statement] = STATE(852), + [sym_while_statement] = STATE(852), + [sym_do_statement] = STATE(852), + [sym_for_statement] = STATE(852), + [sym_return_statement] = STATE(852), + [sym_break_statement] = STATE(852), + [sym_continue_statement] = STATE(852), + [sym_goto_statement] = STATE(852), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [812] = { - [sym_declaration] = STATE(873), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(874), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [813] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [814] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [sym__expression] = STATE(854), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [815] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [816] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2069), + [sym__expression] = STATE(856), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [817] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(876), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [818] = { - [sym__expression] = STATE(877), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [819] = { - [ts_builtin_sym_end] = ACTIONS(2071), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2073), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2071), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2073), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2073), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2073), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2073), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2073), - [sym_preproc_directive] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_typedef] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_auto] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_restrict] = ACTIONS(2073), - [anon_sym_volatile] = ACTIONS(2073), - [sym_function_specifier] = ACTIONS(2073), - [anon_sym_unsigned] = ACTIONS(2073), - [anon_sym_long] = ACTIONS(2073), - [anon_sym_short] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2073), - [anon_sym_switch] = ACTIONS(2073), - [anon_sym_case] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_goto] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2071), - [anon_sym_TILDE] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2071), - [anon_sym_sizeof] = ACTIONS(2073), - [sym_number_literal] = ACTIONS(2073), - [sym_char_literal] = ACTIONS(2073), - [sym_string_literal] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2075), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2036), [sym_comment] = ACTIONS(121), }, [820] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(1956), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [821] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2077), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [822] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(880), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(861), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [823] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [824] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [825] = { - [sym__expression] = STATE(881), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2090), [sym_comment] = ACTIONS(121), }, [826] = { - [sym__expression] = STATE(882), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(883), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(864), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [827] = { - [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2092), + [sym__pound_include] = ACTIONS(2094), + [sym__pound_define] = ACTIONS(2094), + [sym__pound_if] = ACTIONS(2094), + [sym__pound_ifdef] = ACTIONS(2094), + [sym__pound_endif] = ACTIONS(2094), + [sym__pound_else] = ACTIONS(2094), + [sym_preproc_directive] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_typedef] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_auto] = ACTIONS(2094), + [anon_sym_register] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_restrict] = ACTIONS(2094), + [anon_sym_volatile] = ACTIONS(2094), + [sym_function_specifier] = ACTIONS(2094), + [anon_sym_unsigned] = ACTIONS(2094), + [anon_sym_long] = ACTIONS(2094), + [anon_sym_short] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(2094), + [anon_sym_union] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_switch] = ACTIONS(2094), + [anon_sym_case] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_goto] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_DASH_DASH] = ACTIONS(2092), + [anon_sym_PLUS_PLUS] = ACTIONS(2092), + [anon_sym_sizeof] = ACTIONS(2094), + [sym_number_literal] = ACTIONS(2094), + [sym_char_literal] = ACTIONS(2094), + [sym_string_literal] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2096), [sym_comment] = ACTIONS(121), }, [828] = { - [anon_sym_LPAREN] = ACTIONS(2085), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [829] = { - [sym__expression] = STATE(886), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2098), [sym_comment] = ACTIONS(121), }, [830] = { - [anon_sym_COLON] = ACTIONS(2087), + [sym__expression] = STATE(867), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [831] = { - [anon_sym_LPAREN] = ACTIONS(2089), + [sym__expression] = STATE(868), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [832] = { - [anon_sym_LPAREN] = ACTIONS(2091), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(2100), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [833] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2102), [sym_comment] = ACTIONS(121), }, [834] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [sym__expression] = STATE(871), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [835] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym_declaration] = STATE(872), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(873), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [836] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(893), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [837] = { - [sym__expression] = STATE(894), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [838] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [839] = { - [sym__expression] = STATE(896), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2106), [sym_comment] = ACTIONS(121), }, [840] = { - [sym__expression] = STATE(897), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(875), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [841] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(2101), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(876), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [842] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2103), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [843] = { - [sym__expression] = STATE(900), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [844] = { - [sym_declaration] = STATE(901), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(902), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2070), [sym_comment] = ACTIONS(121), }, [845] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(2010), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [846] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [847] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym__expression] = STATE(881), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [848] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2107), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [849] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(904), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [850] = { - [sym__expression] = STATE(905), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2118), [sym_comment] = ACTIONS(121), }, [851] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(884), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [852] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [853] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2031), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [854] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(1895), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(887), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [855] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(888), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [856] = { - [sym__expression] = STATE(910), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [857] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(890), + [sym_labeled_statement] = STATE(890), + [sym_expression_statement] = STATE(890), + [sym_if_statement] = STATE(890), + [sym_switch_statement] = STATE(890), + [sym_case_statement] = STATE(890), + [sym_while_statement] = STATE(890), + [sym_do_statement] = STATE(890), + [sym_for_statement] = STATE(890), + [sym_return_statement] = STATE(890), + [sym_break_statement] = STATE(890), + [sym_continue_statement] = STATE(890), + [sym_goto_statement] = STATE(890), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [858] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [859] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2119), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [860] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(913), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(892), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [861] = { - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_typedef] = ACTIONS(2123), - [anon_sym_static] = ACTIONS(2123), - [anon_sym_auto] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_restrict] = ACTIONS(2123), - [anon_sym_volatile] = ACTIONS(2123), - [sym_function_specifier] = ACTIONS(2123), - [anon_sym_unsigned] = ACTIONS(2123), - [anon_sym_long] = ACTIONS(2123), - [anon_sym_short] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_COLON] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2125), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [862] = { - [sym_compound_statement] = STATE(914), - [sym_labeled_statement] = STATE(914), - [sym_expression_statement] = STATE(914), - [sym_if_statement] = STATE(914), - [sym_switch_statement] = STATE(914), - [sym_case_statement] = STATE(914), - [sym_while_statement] = STATE(914), - [sym_do_statement] = STATE(914), - [sym_for_statement] = STATE(914), - [sym_return_statement] = STATE(914), - [sym_break_statement] = STATE(914), - [sym_continue_statement] = STATE(914), - [sym_goto_statement] = STATE(914), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym__expression] = STATE(894), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [863] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [864] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2130), [sym_comment] = ACTIONS(121), }, [865] = { - [sym__expression] = STATE(916), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(2132), + [sym__pound_include] = ACTIONS(2134), + [sym__pound_define] = ACTIONS(2134), + [sym__pound_if] = ACTIONS(2134), + [sym__pound_ifdef] = ACTIONS(2134), + [sym__pound_endif] = ACTIONS(2134), + [sym__pound_else] = ACTIONS(2134), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_auto] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [sym_function_specifier] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_goto] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_sizeof] = ACTIONS(2134), + [sym_number_literal] = ACTIONS(2134), + [sym_char_literal] = ACTIONS(2134), + [sym_string_literal] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2136), [sym_comment] = ACTIONS(121), }, [866] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(121), }, [867] = { - [sym__expression] = STATE(918), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [868] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [869] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2102), [sym_comment] = ACTIONS(121), }, [870] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(2060), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [871] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(1945), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [872] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(901), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [873] = { - [sym__expression] = STATE(923), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [874] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [875] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2148), [sym_comment] = ACTIONS(121), }, [876] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2141), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(904), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [877] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(926), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(905), + [sym_labeled_statement] = STATE(905), + [sym_expression_statement] = STATE(905), + [sym_if_statement] = STATE(905), + [sym_switch_statement] = STATE(905), + [sym_case_statement] = STATE(905), + [sym_while_statement] = STATE(905), + [sym_do_statement] = STATE(905), + [sym_for_statement] = STATE(905), + [sym_return_statement] = STATE(905), + [sym_break_statement] = STATE(905), + [sym_continue_statement] = STATE(905), + [sym_goto_statement] = STATE(905), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [878] = { - [ts_builtin_sym_end] = ACTIONS(2143), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2145), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2143), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2145), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2145), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2145), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2145), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2145), - [sym_preproc_directive] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_extern] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_typedef] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_auto] = ACTIONS(2145), - [anon_sym_register] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_restrict] = ACTIONS(2145), - [anon_sym_volatile] = ACTIONS(2145), - [sym_function_specifier] = ACTIONS(2145), - [anon_sym_unsigned] = ACTIONS(2145), - [anon_sym_long] = ACTIONS(2145), - [anon_sym_short] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_goto] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_sizeof] = ACTIONS(2145), - [sym_number_literal] = ACTIONS(2145), - [sym_char_literal] = ACTIONS(2145), - [sym_string_literal] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2147), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [879] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [880] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2149), + [sym__expression] = STATE(907), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [881] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_LT_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_GT_EQ] = ACTIONS(1624), - [anon_sym_AMP_EQ] = ACTIONS(1624), - [anon_sym_CARET_EQ] = ACTIONS(1624), - [anon_sym_PIPE_EQ] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [882] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_LT_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_GT_EQ] = ACTIONS(1624), - [anon_sym_AMP_EQ] = ACTIONS(1624), - [anon_sym_CARET_EQ] = ACTIONS(1624), - [anon_sym_PIPE_EQ] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(909), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [883] = { - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [884] = { - [sym__expression] = STATE(929), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2154), [sym_comment] = ACTIONS(121), }, [885] = { - [sym__expression] = STATE(930), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [886] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [887] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2155), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2156), [sym_comment] = ACTIONS(121), }, [888] = { - [sym__expression] = STATE(933), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(912), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [889] = { - [sym_declaration] = STATE(934), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(935), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2157), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym__expression] = STATE(913), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [890] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(1850), [sym_comment] = ACTIONS(121), }, [891] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [892] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [893] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2159), + [sym__expression] = STATE(917), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [894] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(937), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [895] = { - [sym__expression] = STATE(938), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(817), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(821), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(121), }, [896] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2164), + [sym__pound_include] = ACTIONS(2166), + [sym__pound_define] = ACTIONS(2166), + [sym__pound_if] = ACTIONS(2166), + [sym__pound_ifdef] = ACTIONS(2166), + [sym__pound_endif] = ACTIONS(2166), + [sym__pound_else] = ACTIONS(2166), + [sym_preproc_directive] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_typedef] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_auto] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_restrict] = ACTIONS(2166), + [anon_sym_volatile] = ACTIONS(2166), + [sym_function_specifier] = ACTIONS(2166), + [anon_sym_unsigned] = ACTIONS(2166), + [anon_sym_long] = ACTIONS(2166), + [anon_sym_short] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_struct] = ACTIONS(2166), + [anon_sym_union] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_case] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_goto] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_sizeof] = ACTIONS(2166), + [sym_number_literal] = ACTIONS(2166), + [sym_char_literal] = ACTIONS(2166), + [sym_string_literal] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2168), [sym_comment] = ACTIONS(121), }, [897] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(919), + [sym_labeled_statement] = STATE(919), + [sym_expression_statement] = STATE(919), + [sym_if_statement] = STATE(919), + [sym_switch_statement] = STATE(919), + [sym_case_statement] = STATE(919), + [sym_while_statement] = STATE(919), + [sym_do_statement] = STATE(919), + [sym_for_statement] = STATE(919), + [sym_return_statement] = STATE(919), + [sym_break_statement] = STATE(919), + [sym_continue_statement] = STATE(919), + [sym_goto_statement] = STATE(919), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [898] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2103), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [899] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [900] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [901] = { - [sym__expression] = STATE(943), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [902] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(923), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [903] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [904] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2174), [sym_comment] = ACTIONS(121), }, [905] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(946), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym__pound_endif] = ACTIONS(1852), + [sym__pound_else] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [906] = { - [sym_compound_statement] = STATE(947), - [sym_labeled_statement] = STATE(947), - [sym_expression_statement] = STATE(947), - [sym_if_statement] = STATE(947), - [sym_switch_statement] = STATE(947), - [sym_case_statement] = STATE(947), - [sym_while_statement] = STATE(947), - [sym_do_statement] = STATE(947), - [sym_for_statement] = STATE(947), - [sym_return_statement] = STATE(947), - [sym_break_statement] = STATE(947), - [sym_continue_statement] = STATE(947), - [sym_goto_statement] = STATE(947), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [907] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(927), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [908] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym__expression] = STATE(928), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [909] = { - [sym__expression] = STATE(949), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [910] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1680), [sym_comment] = ACTIONS(121), }, [911] = { - [sym__expression] = STATE(951), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [912] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2182), [sym_comment] = ACTIONS(121), }, [913] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2177), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(931), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [914] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(2179), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [915] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [916] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(955), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2184), [sym_comment] = ACTIONS(121), }, [917] = { - [sym__expression] = STATE(956), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(933), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [918] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(934), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [919] = { - [sym_compound_statement] = STATE(958), - [sym_labeled_statement] = STATE(958), - [sym_expression_statement] = STATE(958), - [sym_if_statement] = STATE(958), - [sym_switch_statement] = STATE(958), - [sym_case_statement] = STATE(958), - [sym_while_statement] = STATE(958), - [sym_do_statement] = STATE(958), - [sym_for_statement] = STATE(958), - [sym_return_statement] = STATE(958), - [sym_break_statement] = STATE(958), - [sym_continue_statement] = STATE(958), - [sym_goto_statement] = STATE(958), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym__pound_endif] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [920] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [921] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(937), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [922] = { - [sym__expression] = STATE(960), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(938), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [923] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [924] = { - [sym__expression] = STATE(962), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1812), [sym_comment] = ACTIONS(121), }, [925] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [926] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2189), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2193), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2191), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2193), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2193), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2193), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2193), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2193), - [sym_preproc_directive] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_extern] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_typedef] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_auto] = ACTIONS(2193), - [anon_sym_register] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_restrict] = ACTIONS(2193), - [anon_sym_volatile] = ACTIONS(2193), - [sym_function_specifier] = ACTIONS(2193), - [anon_sym_unsigned] = ACTIONS(2193), - [anon_sym_long] = ACTIONS(2193), - [anon_sym_short] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_goto] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_sizeof] = ACTIONS(2193), - [sym_number_literal] = ACTIONS(2193), - [sym_char_literal] = ACTIONS(2193), - [sym_string_literal] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2195), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2192), [sym_comment] = ACTIONS(121), }, [928] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(820), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(941), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [929] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(942), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [930] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [931] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2155), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2194), [sym_comment] = ACTIONS(121), }, [932] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [933] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2196), [sym_comment] = ACTIONS(121), }, [934] = { - [sym__expression] = STATE(969), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(945), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [935] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [936] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [937] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2198), [sym_comment] = ACTIONS(121), }, [938] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(972), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(947), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [939] = { - [sym_compound_statement] = STATE(973), - [sym_labeled_statement] = STATE(973), - [sym_expression_statement] = STATE(973), - [sym_if_statement] = STATE(973), - [sym_switch_statement] = STATE(973), - [sym_case_statement] = STATE(973), - [sym_while_statement] = STATE(973), - [sym_do_statement] = STATE(973), - [sym_for_statement] = STATE(973), - [sym_return_statement] = STATE(973), - [sym_break_statement] = STATE(973), - [sym_continue_statement] = STATE(973), - [sym_goto_statement] = STATE(973), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [sym__expression] = STATE(948), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [940] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [941] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2200), [sym_comment] = ACTIONS(121), }, [942] = { - [sym__expression] = STATE(975), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(950), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [943] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1714), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1724), [sym_comment] = ACTIONS(121), }, [944] = { - [sym__expression] = STATE(977), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [945] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2202), [sym_comment] = ACTIONS(121), }, [946] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2213), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [947] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(2215), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2204), [sym_comment] = ACTIONS(121), }, [948] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(953), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [949] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(981), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [950] = { - [sym__expression] = STATE(982), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2206), [sym_comment] = ACTIONS(121), }, [951] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1888), [sym_comment] = ACTIONS(121), }, [952] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1029), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [953] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(2208), [sym_comment] = ACTIONS(121), }, [954] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1930), [sym_comment] = ACTIONS(121), }, [955] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2221), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1994), [sym_comment] = ACTIONS(121), }, [956] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(985), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_declaration] = STATE(1035), + [sym__declaration_specifiers] = STATE(1043), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym__abstract_declarator] = STATE(219), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(1044), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_list] = STATE(127), + [sym_parameter_declaration] = STATE(132), + [sym__expression] = STATE(1046), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1024), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2212), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(121), }, [957] = { - [sym__expression] = STATE(986), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [aux_sym_preproc_params_repeat1] = STATE(188), + [aux_sym_parameter_list_repeat1] = STATE(229), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2240), [sym_comment] = ACTIONS(121), }, [958] = { - [anon_sym_else] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(1752), + [sym__declaration_specifiers] = STATE(134), + [sym__declarator] = STATE(1059), + [sym__field_declarator] = STATE(1060), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_init_declarator] = STATE(1061), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_enumerator] = STATE(1062), + [sym_parameter_declaration] = STATE(1063), + [sym__expression] = STATE(1064), + [sym_comma_expression] = STATE(464), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(625), + [sym_designator] = STATE(327), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym__initializer_list_contents_repeat1] = STATE(626), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [anon_sym_DOT] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2268), [sym_comment] = ACTIONS(121), }, [959] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), - [sym_comment] = ACTIONS(121), + [sym_compound_statement] = STATE(1071), + [sym_labeled_statement] = STATE(1071), + [sym_expression_statement] = STATE(1071), + [sym_if_statement] = STATE(1071), + [sym_switch_statement] = STATE(1071), + [sym_case_statement] = STATE(1071), + [sym_while_statement] = STATE(1071), + [sym_do_statement] = STATE(1071), + [sym_for_statement] = STATE(1071), + [sym_return_statement] = STATE(1071), + [sym_break_statement] = STATE(1071), + [sym_continue_statement] = STATE(1071), + [sym_goto_statement] = STATE(1071), + [sym__expression] = STATE(1072), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [sym__pound_include] = ACTIONS(1968), + [sym__pound_define] = ACTIONS(1968), + [sym__pound_if] = ACTIONS(1968), + [sym__pound_ifdef] = ACTIONS(1968), + [sym__pound_endif] = ACTIONS(1968), + [sym__pound_else] = ACTIONS(1968), + [sym_preproc_directive] = ACTIONS(1968), + [sym_preproc_arg] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_RBRACK] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2316), + [anon_sym_static] = ACTIONS(2316), + [anon_sym_auto] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [anon_sym_restrict] = ACTIONS(2316), + [anon_sym_volatile] = ACTIONS(2316), + [sym_function_specifier] = ACTIONS(2316), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2382), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_goto] = ACTIONS(2400), + [anon_sym_QMARK] = ACTIONS(2403), + [anon_sym_STAR_EQ] = ACTIONS(2403), + [anon_sym_SLASH_EQ] = ACTIONS(2403), + [anon_sym_PERCENT_EQ] = ACTIONS(2403), + [anon_sym_PLUS_EQ] = ACTIONS(2403), + [anon_sym_DASH_EQ] = ACTIONS(2403), + [anon_sym_LT_LT_EQ] = ACTIONS(2403), + [anon_sym_GT_GT_EQ] = ACTIONS(2403), + [anon_sym_AMP_EQ] = ACTIONS(2403), + [anon_sym_CARET_EQ] = ACTIONS(2403), + [anon_sym_PIPE_EQ] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_PIPE_PIPE] = ACTIONS(2403), + [anon_sym_AMP_AMP] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_EQ_EQ] = ACTIONS(2403), + [anon_sym_BANG_EQ] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_GT] = ACTIONS(2403), + [anon_sym_LT_EQ] = ACTIONS(2403), + [anon_sym_GT_EQ] = ACTIONS(2403), + [anon_sym_LT_LT] = ACTIONS(2403), + [anon_sym_GT_GT] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_SLASH] = ACTIONS(2403), + [anon_sym_PERCENT] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2417), + [anon_sym_PLUS_PLUS] = ACTIONS(2417), + [anon_sym_sizeof] = ACTIONS(2426), + [anon_sym_DOT] = ACTIONS(2403), + [anon_sym_DASH_GT] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2430), + [sym_char_literal] = ACTIONS(2430), + [sym_string_literal] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2438), + [sym_comment] = ACTIONS(161), }, [960] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(989), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), + [sym_preproc_arg] = ACTIONS(2442), + [sym_comment] = ACTIONS(161), }, [961] = { - [sym__expression] = STATE(990), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_identifier] = ACTIONS(2444), [sym_comment] = ACTIONS(121), }, [962] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [ts_builtin_sym_end] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2453), + [sym__pound_include] = ACTIONS(2462), + [sym__pound_define] = ACTIONS(2462), + [sym__pound_if] = ACTIONS(2462), + [sym__pound_ifdef] = ACTIONS(2462), + [sym__pound_endif] = ACTIONS(2462), + [sym__pound_else] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_auto] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [sym_function_specifier] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_case] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [sym_string_literal] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2477), [sym_comment] = ACTIONS(121), }, [963] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(317), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(325), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(329), + [sym_preproc_include] = STATE(1077), + [sym_preproc_def] = STATE(1077), + [sym_preproc_function_def] = STATE(1077), + [sym_preproc_call] = STATE(1077), + [sym_preproc_if] = STATE(17), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(1077), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(100), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(557), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(2516), + [sym__pound_ifdef] = ACTIONS(2518), + [sym__pound_endif] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1448), [sym_comment] = ACTIONS(121), }, [964] = { - [ts_builtin_sym_end] = ACTIONS(2229), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2231), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2229), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2231), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2231), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2231), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2231), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2231), - [sym_preproc_directive] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_typedef] = ACTIONS(2231), - [anon_sym_static] = ACTIONS(2231), - [anon_sym_auto] = ACTIONS(2231), - [anon_sym_register] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_restrict] = ACTIONS(2231), - [anon_sym_volatile] = ACTIONS(2231), - [sym_function_specifier] = ACTIONS(2231), - [anon_sym_unsigned] = ACTIONS(2231), - [anon_sym_long] = ACTIONS(2231), - [anon_sym_short] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_else] = ACTIONS(2231), - [anon_sym_switch] = ACTIONS(2231), - [anon_sym_case] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [anon_sym_do] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_goto] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_sizeof] = ACTIONS(2231), - [sym_number_literal] = ACTIONS(2231), - [sym_char_literal] = ACTIONS(2231), - [sym_string_literal] = ACTIONS(2229), - [sym_identifier] = ACTIONS(2233), + [sym__expression] = STATE(1081), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [ts_builtin_sym_end] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_RPAREN] = ACTIONS(2539), + [sym__pound_include] = ACTIONS(2541), + [sym__pound_define] = ACTIONS(2541), + [sym__pound_if] = ACTIONS(2541), + [sym__pound_ifdef] = ACTIONS(2541), + [sym__pound_endif] = ACTIONS(2541), + [sym__pound_else] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_typedef] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_auto] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_restrict] = ACTIONS(2575), + [anon_sym_volatile] = ACTIONS(2575), + [sym_function_specifier] = ACTIONS(2575), + [anon_sym_unsigned] = ACTIONS(2575), + [anon_sym_long] = ACTIONS(2575), + [anon_sym_short] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), + [anon_sym_struct] = ACTIONS(2575), + [anon_sym_union] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_sizeof] = ACTIONS(2688), + [sym_number_literal] = ACTIONS(2700), + [sym_char_literal] = ACTIONS(2700), + [sym_string_literal] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2724), [sym_comment] = ACTIONS(121), }, [965] = { - [sym_compound_statement] = STATE(992), - [sym_labeled_statement] = STATE(992), - [sym_expression_statement] = STATE(992), - [sym_if_statement] = STATE(992), - [sym_switch_statement] = STATE(992), - [sym_case_statement] = STATE(992), - [sym_while_statement] = STATE(992), - [sym_do_statement] = STATE(992), - [sym_for_statement] = STATE(992), - [sym_return_statement] = STATE(992), - [sym_break_statement] = STATE(992), - [sym_continue_statement] = STATE(992), - [sym_goto_statement] = STATE(992), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_RPAREN] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_extern] = ACTIONS(167), + [anon_sym_STAR] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(173), + [anon_sym_typedef] = ACTIONS(167), + [anon_sym_static] = ACTIONS(167), + [anon_sym_auto] = ACTIONS(167), + [anon_sym_register] = ACTIONS(167), + [anon_sym_const] = ACTIONS(167), + [anon_sym_restrict] = ACTIONS(167), + [anon_sym_volatile] = ACTIONS(167), + [sym_function_specifier] = ACTIONS(167), + [anon_sym_unsigned] = ACTIONS(167), + [anon_sym_long] = ACTIONS(167), + [anon_sym_short] = ACTIONS(167), + [anon_sym_enum] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(167), + [anon_sym_union] = ACTIONS(167), + [anon_sym_COLON] = ACTIONS(173), + [anon_sym_AMP] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_sizeof] = ACTIONS(167), + [sym_number_literal] = ACTIONS(167), + [sym_char_literal] = ACTIONS(167), + [sym_string_literal] = ACTIONS(2741), + [sym_identifier] = ACTIONS(171), [sym_comment] = ACTIONS(121), }, [966] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [sym_preproc_include] = STATE(1077), + [sym_preproc_def] = STATE(1077), + [sym_preproc_function_def] = STATE(1077), + [sym_preproc_call] = STATE(1077), + [sym_preproc_if] = STATE(17), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(1077), + [sym__declaration_specifiers] = STATE(1091), + [sym_linkage_specification] = STATE(17), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_field_declaration] = STATE(73), + [sym_enumerator] = STATE(69), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(325), + [sym__initializer_list_contents] = STATE(326), + [sym_designator] = STATE(327), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(106), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(168), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_field_declaration_list_repeat1] = STATE(74), + [aux_sym__initializer_list_contents_repeat1] = STATE(328), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_COMMA] = ACTIONS(279), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(2516), + [sym__pound_ifdef] = ACTIONS(2518), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(957), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2762), [sym_comment] = ACTIONS(121), }, [967] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [ts_builtin_sym_end] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_COMMA] = ACTIONS(2781), + [anon_sym_RPAREN] = ACTIONS(2781), + [sym__pound_include] = ACTIONS(2791), + [sym__pound_define] = ACTIONS(2791), + [sym__pound_if] = ACTIONS(2791), + [sym__pound_ifdef] = ACTIONS(2791), + [sym__pound_endif] = ACTIONS(2791), + [sym__pound_else] = ACTIONS(2791), + [sym_preproc_directive] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_RBRACK] = ACTIONS(2781), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_auto] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [sym_function_specifier] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2791), + [anon_sym_long] = ACTIONS(2791), + [anon_sym_short] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_COLON] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2839), + [anon_sym_switch] = ACTIONS(2839), + [anon_sym_case] = ACTIONS(2839), + [anon_sym_default] = ACTIONS(2839), + [anon_sym_while] = ACTIONS(2839), + [anon_sym_do] = ACTIONS(2839), + [anon_sym_for] = ACTIONS(2839), + [anon_sym_return] = ACTIONS(2839), + [anon_sym_break] = ACTIONS(2839), + [anon_sym_continue] = ACTIONS(2839), + [anon_sym_goto] = ACTIONS(2839), + [anon_sym_QMARK] = ACTIONS(2842), + [anon_sym_STAR_EQ] = ACTIONS(2842), + [anon_sym_SLASH_EQ] = ACTIONS(2842), + [anon_sym_PERCENT_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2842), + [anon_sym_DASH_EQ] = ACTIONS(2842), + [anon_sym_LT_LT_EQ] = ACTIONS(2842), + [anon_sym_GT_GT_EQ] = ACTIONS(2842), + [anon_sym_AMP_EQ] = ACTIONS(2842), + [anon_sym_CARET_EQ] = ACTIONS(2842), + [anon_sym_PIPE_EQ] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_PIPE_PIPE] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2835), + [anon_sym_CARET] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_GT] = ACTIONS(2835), + [anon_sym_LT_EQ] = ACTIONS(2842), + [anon_sym_GT_EQ] = ACTIONS(2842), + [anon_sym_LT_LT] = ACTIONS(2835), + [anon_sym_GT_GT] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2835), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2846), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_DASH_GT] = ACTIONS(2842), + [sym_number_literal] = ACTIONS(2846), + [sym_char_literal] = ACTIONS(2846), + [sym_string_literal] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2864), [sym_comment] = ACTIONS(121), }, [968] = { - [sym__expression] = STATE(994), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2235), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declarator] = STATE(1096), + [sym__field_declarator] = STATE(1097), + [sym__abstract_declarator] = STATE(220), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [sym__expression] = STATE(1098), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2895), [sym_comment] = ACTIONS(121), }, [969] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__declaration_specifiers] = STATE(1100), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(1101), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(2897), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(579), [sym_comment] = ACTIONS(121), }, [970] = { - [sym__expression] = STATE(996), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_COMMA] = ACTIONS(2899), + [anon_sym_RPAREN] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2942), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_DASH_GT] = ACTIONS(1766), [sym_comment] = ACTIONS(121), }, [971] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym__expression] = STATE(1102), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(1103), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [972] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_RBRACK] = ACTIONS(2952), + [anon_sym_typedef] = ACTIONS(2955), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_auto] = ACTIONS(2955), + [anon_sym_register] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(2955), + [anon_sym_restrict] = ACTIONS(2955), + [anon_sym_volatile] = ACTIONS(2955), + [sym_function_specifier] = ACTIONS(2955), + [anon_sym_unsigned] = ACTIONS(2955), + [anon_sym_long] = ACTIONS(2955), + [anon_sym_short] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2955), + [anon_sym_union] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2955), + [sym_char_literal] = ACTIONS(2955), + [sym_string_literal] = ACTIONS(2952), + [sym_identifier] = ACTIONS(2958), [sym_comment] = ACTIONS(121), }, [973] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_RBRACK] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_auto] = ACTIONS(2964), + [anon_sym_register] = ACTIONS(2964), + [anon_sym_const] = ACTIONS(2964), + [anon_sym_restrict] = ACTIONS(2964), + [anon_sym_volatile] = ACTIONS(2964), + [sym_function_specifier] = ACTIONS(2964), + [anon_sym_unsigned] = ACTIONS(2964), + [anon_sym_long] = ACTIONS(2964), + [anon_sym_short] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2964), + [sym_number_literal] = ACTIONS(2964), + [sym_char_literal] = ACTIONS(2964), + [sym_string_literal] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2967), [sym_comment] = ACTIONS(121), }, [974] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [sym_declaration] = STATE(1105), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(1106), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(1106), + [sym_expression_statement] = STATE(1106), + [sym_if_statement] = STATE(1106), + [sym_switch_statement] = STATE(1106), + [sym_case_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_return_statement] = STATE(1106), + [sym_break_statement] = STATE(1106), + [sym_continue_statement] = STATE(1106), + [sym_goto_statement] = STATE(1106), + [sym__expression] = STATE(1107), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2982), [sym_comment] = ACTIONS(121), }, [975] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1000), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2984), [sym_comment] = ACTIONS(121), }, [976] = { - [sym__expression] = STATE(1001), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [977] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(2988), [sym_comment] = ACTIONS(121), }, [978] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_case] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_while] = ACTIONS(574), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1398), + [sym__expression] = STATE(1111), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [979] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(2990), [sym_comment] = ACTIONS(121), }, [980] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(2992), [sym_comment] = ACTIONS(121), }, [981] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2994), [sym_comment] = ACTIONS(121), }, [982] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1004), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1115), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [983] = { - [sym__expression] = STATE(1005), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1116), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [984] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym__expression] = STATE(1117), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [985] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2249), + [sym__expression] = STATE(1118), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [986] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1007), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1119), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [987] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym__expression] = STATE(1120), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [988] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym__expression] = STATE(1121), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [989] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2251), + [sym__expression] = STATE(1122), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [990] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1009), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1123), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [991] = { - [sym__expression] = STATE(1010), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1124), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [992] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(2253), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), + [sym__expression] = STATE(1125), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [993] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [sym__expression] = STATE(1126), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [994] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1013), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1127), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_RBRACK] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(2893), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DASH_GT] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [995] = { - [sym__expression] = STATE(1014), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1129), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [996] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_identifier] = ACTIONS(3012), [sym_comment] = ACTIONS(121), }, [997] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(971), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_case] = ACTIONS(975), - [anon_sym_default] = ACTIONS(977), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1660), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym__declaration_specifiers] = STATE(65), + [sym_declaration_list] = STATE(64), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_concatenated_string_repeat1] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RPAREN] = ACTIONS(3019), + [sym__pound_include] = ACTIONS(255), + [sym__pound_define] = ACTIONS(255), + [sym__pound_if] = ACTIONS(255), + [sym__pound_ifdef] = ACTIONS(255), + [sym__pound_endif] = ACTIONS(255), + [sym__pound_else] = ACTIONS(255), + [sym_preproc_directive] = ACTIONS(257), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_extern] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_RBRACK] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_auto] = ACTIONS(3023), + [anon_sym_register] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3038), + [anon_sym_restrict] = ACTIONS(3038), + [anon_sym_volatile] = ACTIONS(3038), + [sym_function_specifier] = ACTIONS(3041), + [anon_sym_unsigned] = ACTIONS(3044), + [anon_sym_long] = ACTIONS(3044), + [anon_sym_short] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_union] = ACTIONS(3053), + [anon_sym_COLON] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(255), + [anon_sym_default] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_goto] = ACTIONS(255), + [anon_sym_QMARK] = ACTIONS(3019), + [anon_sym_STAR_EQ] = ACTIONS(3019), + [anon_sym_SLASH_EQ] = ACTIONS(3019), + [anon_sym_PERCENT_EQ] = ACTIONS(3019), + [anon_sym_PLUS_EQ] = ACTIONS(3019), + [anon_sym_DASH_EQ] = ACTIONS(3019), + [anon_sym_LT_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_GT_EQ] = ACTIONS(3019), + [anon_sym_AMP_EQ] = ACTIONS(3019), + [anon_sym_CARET_EQ] = ACTIONS(3019), + [anon_sym_PIPE_EQ] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(255), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_CARET] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_EQ_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_LT_LT] = ACTIONS(3034), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3034), + [anon_sym_PERCENT] = ACTIONS(3034), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(255), + [anon_sym_DOT] = ACTIONS(3019), + [anon_sym_DASH_GT] = ACTIONS(3019), + [sym_number_literal] = ACTIONS(255), + [sym_char_literal] = ACTIONS(255), + [sym_string_literal] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3061), [sym_comment] = ACTIONS(121), }, [998] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), - [sym_comment] = ACTIONS(121), + [sym_preproc_include] = STATE(1077), + [sym_preproc_def] = STATE(1077), + [sym_preproc_function_def] = STATE(1077), + [sym_preproc_params] = STATE(55), + [sym_preproc_call] = STATE(1077), + [sym_preproc_if] = STATE(17), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_preproc_else] = STATE(61), + [sym_preproc_else_in_compound_statement] = STATE(414), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(1077), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_enumerator_list] = STATE(70), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_field_declaration_list] = STATE(1136), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(62), + [aux_sym_preproc_params_repeat1] = STATE(188), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(415), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(259), + [anon_sym_LF] = ACTIONS(261), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_RPAREN] = ACTIONS(3089), + [sym__pound_include] = ACTIONS(3102), + [sym__pound_define] = ACTIONS(3104), + [sym__pound_if] = ACTIONS(3106), + [sym__pound_ifdef] = ACTIONS(3108), + [sym__pound_endif] = ACTIONS(3110), + [sym__pound_else] = ACTIONS(3112), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_RBRACK] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_auto] = ACTIONS(3173), + [anon_sym_register] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [sym_function_specifier] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3194), + [anon_sym_long] = ACTIONS(3194), + [anon_sym_short] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3232), + [anon_sym_QMARK] = ACTIONS(3234), + [anon_sym_STAR_EQ] = ACTIONS(3234), + [anon_sym_SLASH_EQ] = ACTIONS(3234), + [anon_sym_PERCENT_EQ] = ACTIONS(3234), + [anon_sym_PLUS_EQ] = ACTIONS(3234), + [anon_sym_DASH_EQ] = ACTIONS(3234), + [anon_sym_LT_LT_EQ] = ACTIONS(3234), + [anon_sym_GT_GT_EQ] = ACTIONS(3234), + [anon_sym_AMP_EQ] = ACTIONS(3234), + [anon_sym_CARET_EQ] = ACTIONS(3234), + [anon_sym_PIPE_EQ] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3234), + [anon_sym_AMP_AMP] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_CARET] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_LT_EQ] = ACTIONS(3234), + [anon_sym_GT_EQ] = ACTIONS(3234), + [anon_sym_LT_LT] = ACTIONS(3234), + [anon_sym_GT_GT] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(3260), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3271), + [sym_char_literal] = ACTIONS(3271), + [sym_string_literal] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3285), + [sym_comment] = ACTIONS(161), }, [999] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [ts_builtin_sym_end] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3295), + [sym__pound_include] = ACTIONS(3298), + [sym__pound_define] = ACTIONS(3298), + [sym__pound_if] = ACTIONS(3298), + [sym__pound_ifdef] = ACTIONS(3298), + [sym__pound_endif] = ACTIONS(3298), + [sym__pound_else] = ACTIONS(3298), + [sym_preproc_directive] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_extern] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_typedef] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_auto] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_restrict] = ACTIONS(3298), + [anon_sym_volatile] = ACTIONS(3298), + [sym_function_specifier] = ACTIONS(3298), + [anon_sym_unsigned] = ACTIONS(3298), + [anon_sym_long] = ACTIONS(3298), + [anon_sym_short] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_switch] = ACTIONS(3313), + [anon_sym_case] = ACTIONS(3313), + [anon_sym_default] = ACTIONS(3313), + [anon_sym_while] = ACTIONS(3313), + [anon_sym_do] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3313), + [anon_sym_return] = ACTIONS(3313), + [anon_sym_break] = ACTIONS(3313), + [anon_sym_continue] = ACTIONS(3313), + [anon_sym_goto] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_sizeof] = ACTIONS(3313), + [sym_number_literal] = ACTIONS(3313), + [sym_char_literal] = ACTIONS(3313), + [sym_string_literal] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3303), [sym_comment] = ACTIONS(121), }, [1000] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2259), + [ts_builtin_sym_end] = ACTIONS(3292), + [sym__pound_include] = ACTIONS(3316), + [sym__pound_define] = ACTIONS(3316), + [sym__pound_if] = ACTIONS(3316), + [sym__pound_ifdef] = ACTIONS(3316), + [sym__pound_endif] = ACTIONS(3316), + [sym__pound_else] = ACTIONS(3316), + [sym_preproc_directive] = ACTIONS(3319), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_auto] = ACTIONS(3316), + [anon_sym_register] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_restrict] = ACTIONS(3316), + [anon_sym_volatile] = ACTIONS(3316), + [sym_function_specifier] = ACTIONS(3316), + [anon_sym_unsigned] = ACTIONS(3316), + [anon_sym_long] = ACTIONS(3316), + [anon_sym_short] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3319), [sym_comment] = ACTIONS(121), }, [1001] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1017), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(3322), + [sym__pound_include] = ACTIONS(3325), + [sym__pound_define] = ACTIONS(3325), + [sym__pound_if] = ACTIONS(3325), + [sym__pound_ifdef] = ACTIONS(3325), + [sym__pound_endif] = ACTIONS(3325), + [sym__pound_else] = ACTIONS(3325), + [sym_preproc_directive] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_typedef] = ACTIONS(3325), + [anon_sym_static] = ACTIONS(3325), + [anon_sym_auto] = ACTIONS(3325), + [anon_sym_register] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_restrict] = ACTIONS(3325), + [anon_sym_volatile] = ACTIONS(3325), + [sym_function_specifier] = ACTIONS(3325), + [anon_sym_unsigned] = ACTIONS(3325), + [anon_sym_long] = ACTIONS(3325), + [anon_sym_short] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), + [anon_sym_struct] = ACTIONS(3325), + [anon_sym_union] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3325), + [anon_sym_case] = ACTIONS(3325), + [anon_sym_default] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_do] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_goto] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_sizeof] = ACTIONS(3325), + [sym_number_literal] = ACTIONS(3325), + [sym_char_literal] = ACTIONS(3325), + [sym_string_literal] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3328), [sym_comment] = ACTIONS(121), }, [1002] = { - [sym__expression] = STATE(1018), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(3331), + [sym__pound_include] = ACTIONS(3334), + [sym__pound_define] = ACTIONS(3334), + [sym__pound_if] = ACTIONS(3334), + [sym__pound_ifdef] = ACTIONS(3334), + [sym__pound_endif] = ACTIONS(3334), + [sym__pound_else] = ACTIONS(3334), + [sym_preproc_directive] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_typedef] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_auto] = ACTIONS(3334), + [anon_sym_register] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_restrict] = ACTIONS(3334), + [anon_sym_volatile] = ACTIONS(3334), + [sym_function_specifier] = ACTIONS(3334), + [anon_sym_unsigned] = ACTIONS(3334), + [anon_sym_long] = ACTIONS(3334), + [anon_sym_short] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3334), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_goto] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3334), + [sym_number_literal] = ACTIONS(3334), + [sym_char_literal] = ACTIONS(3334), + [sym_string_literal] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3337), [sym_comment] = ACTIONS(121), }, [1003] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym__pound_endif] = ACTIONS(3340), [sym_comment] = ACTIONS(121), }, [1004] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2261), + [sym__pound_endif] = ACTIONS(3342), [sym_comment] = ACTIONS(121), }, [1005] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1020), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym__pound_include] = ACTIONS(3348), + [sym__pound_define] = ACTIONS(3348), + [sym__pound_if] = ACTIONS(3348), + [sym__pound_ifdef] = ACTIONS(3348), + [sym__pound_endif] = ACTIONS(3348), + [sym__pound_else] = ACTIONS(3348), + [sym_preproc_directive] = ACTIONS(3352), + [anon_sym_extern] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_auto] = ACTIONS(3348), + [anon_sym_register] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_restrict] = ACTIONS(3348), + [anon_sym_volatile] = ACTIONS(3348), + [sym_function_specifier] = ACTIONS(3348), + [anon_sym_unsigned] = ACTIONS(3348), + [anon_sym_long] = ACTIONS(3348), + [anon_sym_short] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3348), + [anon_sym_union] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3352), [sym_comment] = ACTIONS(121), }, [1006] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [sym__expression] = STATE(1140), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [ts_builtin_sym_end] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3356), + [sym__pound_include] = ACTIONS(3362), + [sym__pound_define] = ACTIONS(3362), + [sym__pound_if] = ACTIONS(3362), + [sym__pound_ifdef] = ACTIONS(3362), + [sym__pound_endif] = ACTIONS(3362), + [sym__pound_else] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_auto] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [sym_function_specifier] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_else] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_sizeof] = ACTIONS(3435), + [sym_number_literal] = ACTIONS(3441), + [sym_char_literal] = ACTIONS(3441), + [sym_string_literal] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3453), [sym_comment] = ACTIONS(121), }, [1007] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2263), + [sym__declarator] = STATE(1146), + [sym__field_declarator] = STATE(116), + [sym__abstract_declarator] = STATE(233), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_init_declarator] = STATE(45), + [sym_parameter_list] = STATE(127), + [sym__expression] = STATE(1147), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_COMMA] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_RBRACK] = ACTIONS(3468), + [anon_sym_COLON] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(3470), [sym_comment] = ACTIONS(121), }, [1008] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym_compound_statement] = STATE(91), + [sym_parameter_list] = STATE(92), + [aux_sym_declaration_repeat1] = STATE(93), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_COMMA] = ACTIONS(3475), + [anon_sym_RPAREN] = ACTIONS(3481), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3496), [sym_comment] = ACTIONS(121), }, [1009] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2265), + [sym_parameter_list] = STATE(217), + [aux_sym_field_declaration_repeat1] = STATE(218), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3502), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_COLON] = ACTIONS(3518), [sym_comment] = ACTIONS(121), }, [1010] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1023), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_parameter_list] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3535), [sym_comment] = ACTIONS(121), }, [1011] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [aux_sym_declaration_repeat1] = STATE(93), + [anon_sym_COMMA] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3542), [sym_comment] = ACTIONS(121), }, [1012] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [ts_builtin_sym_end] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3546), + [sym__pound_include] = ACTIONS(3561), + [sym__pound_define] = ACTIONS(3561), + [sym__pound_if] = ACTIONS(3561), + [sym__pound_ifdef] = ACTIONS(3561), + [sym__pound_endif] = ACTIONS(3561), + [sym__pound_else] = ACTIONS(3561), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_extern] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_typedef] = ACTIONS(3561), + [anon_sym_static] = ACTIONS(3561), + [anon_sym_auto] = ACTIONS(3561), + [anon_sym_register] = ACTIONS(3561), + [anon_sym_const] = ACTIONS(3561), + [anon_sym_restrict] = ACTIONS(3561), + [anon_sym_volatile] = ACTIONS(3561), + [sym_function_specifier] = ACTIONS(3561), + [anon_sym_unsigned] = ACTIONS(3561), + [anon_sym_long] = ACTIONS(3561), + [anon_sym_short] = ACTIONS(3561), + [anon_sym_enum] = ACTIONS(3561), + [anon_sym_struct] = ACTIONS(3561), + [anon_sym_union] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_case] = ACTIONS(3609), + [anon_sym_default] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_goto] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_sizeof] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3609), + [sym_char_literal] = ACTIONS(3609), + [sym_string_literal] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3577), [sym_comment] = ACTIONS(121), }, [1013] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_RBRACK] = ACTIONS(2952), + [anon_sym_typedef] = ACTIONS(2955), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_auto] = ACTIONS(2955), + [anon_sym_register] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_restrict] = ACTIONS(3654), + [anon_sym_volatile] = ACTIONS(3654), + [sym_function_specifier] = ACTIONS(2955), + [anon_sym_unsigned] = ACTIONS(3654), + [anon_sym_long] = ACTIONS(3654), + [anon_sym_short] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [anon_sym_struct] = ACTIONS(3654), + [anon_sym_union] = ACTIONS(3654), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2955), + [sym_char_literal] = ACTIONS(2955), + [sym_string_literal] = ACTIONS(2952), + [sym_identifier] = ACTIONS(3659), [sym_comment] = ACTIONS(121), }, [1014] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1025), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__abstract_declarator] = STATE(1148), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_abstract_function_declarator] = STATE(126), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym_parameter_list] = STATE(127), + [aux_sym__declaration_specifiers_repeat1] = STATE(1149), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_RBRACK] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_sizeof] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3684), + [sym_char_literal] = ACTIONS(3684), + [sym_string_literal] = ACTIONS(3668), + [sym_identifier] = ACTIONS(3687), [sym_comment] = ACTIONS(121), }, [1015] = { - [sym__expression] = STATE(1026), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_COMMA] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3693), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_RBRACK] = ACTIONS(3690), + [anon_sym_typedef] = ACTIONS(3693), + [anon_sym_static] = ACTIONS(3693), + [anon_sym_auto] = ACTIONS(3693), + [anon_sym_register] = ACTIONS(3693), + [anon_sym_const] = ACTIONS(3693), + [anon_sym_restrict] = ACTIONS(3693), + [anon_sym_volatile] = ACTIONS(3693), + [sym_function_specifier] = ACTIONS(3693), + [anon_sym_COLON] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3693), + [sym_number_literal] = ACTIONS(3693), + [sym_char_literal] = ACTIONS(3693), + [sym_string_literal] = ACTIONS(3690), + [sym_identifier] = ACTIONS(3696), [sym_comment] = ACTIONS(121), }, [1016] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3699), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_auto] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [sym_function_specifier] = ACTIONS(3704), + [anon_sym_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3699), + [anon_sym_BANG] = ACTIONS(3699), + [anon_sym_TILDE] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_PLUS_PLUS] = ACTIONS(3699), + [anon_sym_sizeof] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3704), + [sym_char_literal] = ACTIONS(3704), + [sym_string_literal] = ACTIONS(3699), + [sym_identifier] = ACTIONS(3709), [sym_comment] = ACTIONS(121), }, [1017] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(3714), + [anon_sym_RBRACE] = ACTIONS(3717), + [anon_sym_typedef] = ACTIONS(3714), + [anon_sym_static] = ACTIONS(3714), + [anon_sym_auto] = ACTIONS(3714), + [anon_sym_register] = ACTIONS(3714), + [anon_sym_const] = ACTIONS(3714), + [anon_sym_restrict] = ACTIONS(3714), + [anon_sym_volatile] = ACTIONS(3714), + [sym_function_specifier] = ACTIONS(3714), + [anon_sym_unsigned] = ACTIONS(3714), + [anon_sym_long] = ACTIONS(3714), + [anon_sym_short] = ACTIONS(3714), + [anon_sym_enum] = ACTIONS(3714), + [anon_sym_struct] = ACTIONS(3714), + [anon_sym_union] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3720), [sym_comment] = ACTIONS(121), }, [1018] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1028), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [aux_sym_enumerator_list_repeat1] = STATE(110), + [anon_sym_COMMA] = ACTIONS(3723), + [anon_sym_RBRACE] = ACTIONS(3727), [sym_comment] = ACTIONS(121), }, [1019] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(3731), + [anon_sym_COMMA] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(1093), [sym_comment] = ACTIONS(121), }, [1020] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2271), + [aux_sym_parameter_list_repeat1] = STATE(229), + [anon_sym_COMMA] = ACTIONS(3739), + [anon_sym_RPAREN] = ACTIONS(3743), [sym_comment] = ACTIONS(121), }, [1021] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(3747), + [sym__pound_include] = ACTIONS(3762), + [sym__pound_define] = ACTIONS(3762), + [sym__pound_if] = ACTIONS(3762), + [sym__pound_ifdef] = ACTIONS(3762), + [sym__pound_endif] = ACTIONS(3762), + [sym__pound_else] = ACTIONS(3762), + [sym_preproc_directive] = ACTIONS(3777), + [anon_sym_SEMI] = ACTIONS(3747), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3747), + [anon_sym_RBRACE] = ACTIONS(3747), + [anon_sym_STAR] = ACTIONS(3747), + [anon_sym_typedef] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_auto] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [sym_function_specifier] = ACTIONS(3762), + [anon_sym_unsigned] = ACTIONS(3762), + [anon_sym_long] = ACTIONS(3762), + [anon_sym_short] = ACTIONS(3762), + [anon_sym_enum] = ACTIONS(3762), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_union] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_else] = ACTIONS(3792), + [anon_sym_switch] = ACTIONS(3762), + [anon_sym_case] = ACTIONS(3762), + [anon_sym_default] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3806), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_break] = ACTIONS(3762), + [anon_sym_continue] = ACTIONS(3762), + [anon_sym_goto] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3747), + [anon_sym_BANG] = ACTIONS(3747), + [anon_sym_TILDE] = ACTIONS(3747), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3747), + [anon_sym_PLUS_PLUS] = ACTIONS(3747), + [anon_sym_sizeof] = ACTIONS(3762), + [sym_number_literal] = ACTIONS(3762), + [sym_char_literal] = ACTIONS(3762), + [sym_string_literal] = ACTIONS(3747), + [sym_identifier] = ACTIONS(3777), [sym_comment] = ACTIONS(121), }, [1022] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1030), + [anon_sym_LPAREN] = ACTIONS(3822), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_RPAREN] = ACTIONS(3861), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3898), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3965), + [anon_sym_COLON] = ACTIONS(3981), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_STAR_EQ] = ACTIONS(4013), + [anon_sym_SLASH_EQ] = ACTIONS(4013), + [anon_sym_PERCENT_EQ] = ACTIONS(4013), + [anon_sym_PLUS_EQ] = ACTIONS(4013), + [anon_sym_DASH_EQ] = ACTIONS(4013), + [anon_sym_LT_LT_EQ] = ACTIONS(4013), + [anon_sym_GT_GT_EQ] = ACTIONS(4013), + [anon_sym_AMP_EQ] = ACTIONS(4013), + [anon_sym_CARET_EQ] = ACTIONS(4013), + [anon_sym_PIPE_EQ] = ACTIONS(4013), + [anon_sym_AMP] = ACTIONS(4029), + [anon_sym_PIPE_PIPE] = ACTIONS(4045), + [anon_sym_AMP_AMP] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4029), + [anon_sym_CARET] = ACTIONS(4029), + [anon_sym_EQ_EQ] = ACTIONS(4061), + [anon_sym_BANG_EQ] = ACTIONS(4061), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_LT_EQ] = ACTIONS(4093), + [anon_sym_GT_EQ] = ACTIONS(4093), + [anon_sym_LT_LT] = ACTIONS(4109), + [anon_sym_GT_GT] = ACTIONS(4109), + [anon_sym_PLUS] = ACTIONS(4125), + [anon_sym_DASH] = ACTIONS(4125), + [anon_sym_SLASH] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(4157), + [anon_sym_DASH_GT] = ACTIONS(4157), [sym_comment] = ACTIONS(121), }, [1023] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_RPAREN] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4176), [sym_comment] = ACTIONS(121), }, [1024] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(4179), [sym_comment] = ACTIONS(121), }, [1025] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_EQ] = ACTIONS(1658), + [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_QMARK] = ACTIONS(1656), + [anon_sym_STAR_EQ] = ACTIONS(1656), + [anon_sym_SLASH_EQ] = ACTIONS(1656), + [anon_sym_PERCENT_EQ] = ACTIONS(1656), + [anon_sym_PLUS_EQ] = ACTIONS(1656), + [anon_sym_DASH_EQ] = ACTIONS(1656), + [anon_sym_LT_LT_EQ] = ACTIONS(1656), + [anon_sym_GT_GT_EQ] = ACTIONS(1656), + [anon_sym_AMP_EQ] = ACTIONS(1656), + [anon_sym_CARET_EQ] = ACTIONS(1656), + [anon_sym_PIPE_EQ] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_EQ_EQ] = ACTIONS(1656), + [anon_sym_BANG_EQ] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1658), + [anon_sym_GT] = ACTIONS(1658), + [anon_sym_LT_EQ] = ACTIONS(1656), + [anon_sym_GT_EQ] = ACTIONS(1656), + [anon_sym_LT_LT] = ACTIONS(1658), + [anon_sym_GT_GT] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_SLASH] = ACTIONS(1658), + [anon_sym_PERCENT] = ACTIONS(1658), + [anon_sym_DASH_DASH] = ACTIONS(1656), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1656), + [anon_sym_DASH_GT] = ACTIONS(1656), [sym_comment] = ACTIONS(121), }, [1026] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1032), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), [sym_comment] = ACTIONS(121), }, [1027] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_preproc_else] = STATE(1158), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(47), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(240), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(129), + [sym__pound_ifdef] = ACTIONS(131), + [sym__pound_endif] = ACTIONS(4198), + [sym__pound_else] = ACTIONS(267), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym_comment] = ACTIONS(121), }, [1028] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2277), + [sym_preproc_include] = STATE(301), + [sym_preproc_def] = STATE(301), + [sym_preproc_function_def] = STATE(301), + [sym_preproc_call] = STATE(301), + [sym_preproc_if_in_compound_statement] = STATE(302), + [sym_preproc_ifdef_in_compound_statement] = STATE(303), + [sym_preproc_else_in_compound_statement] = STATE(1167), + [sym_declaration] = STATE(301), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(301), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(301), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym__pound_endif] = ACTIONS(4201), + [sym__pound_else] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4216), [sym_comment] = ACTIONS(121), }, [1029] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1702), + [sym_storage_class_specifier] = STATE(48), + [sym_type_qualifier] = STATE(48), + [sym__type_specifier] = STATE(49), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(242), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_TILDE] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_sizeof] = ACTIONS(4221), + [sym_number_literal] = ACTIONS(4221), + [sym_char_literal] = ACTIONS(4221), + [sym_string_literal] = ACTIONS(4218), + [sym_identifier] = ACTIONS(4224), [sym_comment] = ACTIONS(121), }, [1030] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(4228), [sym_comment] = ACTIONS(121), }, [1031] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), + [sym_designator] = STATE(498), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(957), [sym_comment] = ACTIONS(121), }, [1032] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(2279), + [sym__declaration_specifiers] = STATE(134), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym__abstract_declarator] = STATE(219), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(1044), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_list] = STATE(127), + [sym_parameter_declaration] = STATE(132), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1173), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4236), [sym_comment] = ACTIONS(121), }, [1033] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1869), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_params_repeat1] = STATE(188), + [aux_sym_parameter_list_repeat1] = STATE(229), + [anon_sym_COMMA] = ACTIONS(4238), + [anon_sym_RPAREN] = ACTIONS(4240), [sym_comment] = ACTIONS(121), }, [1034] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2005), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [sym_preproc_arg] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_RBRACE] = ACTIONS(4247), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_RBRACK] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4242), + [anon_sym_COLON] = ACTIONS(4242), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_STAR_EQ] = ACTIONS(4247), + [anon_sym_SLASH_EQ] = ACTIONS(4247), + [anon_sym_PERCENT_EQ] = ACTIONS(4247), + [anon_sym_PLUS_EQ] = ACTIONS(4247), + [anon_sym_DASH_EQ] = ACTIONS(4247), + [anon_sym_LT_LT_EQ] = ACTIONS(4247), + [anon_sym_GT_GT_EQ] = ACTIONS(4247), + [anon_sym_AMP_EQ] = ACTIONS(4247), + [anon_sym_CARET_EQ] = ACTIONS(4247), + [anon_sym_PIPE_EQ] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE_PIPE] = ACTIONS(4247), + [anon_sym_AMP_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4247), + [anon_sym_EQ_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_LT_EQ] = ACTIONS(4247), + [anon_sym_GT_EQ] = ACTIONS(4247), + [anon_sym_LT_LT] = ACTIONS(4247), + [anon_sym_GT_GT] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4247), + [anon_sym_PLUS_PLUS] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_DASH_GT] = ACTIONS(4247), + [sym_comment] = ACTIONS(161), }, [1035] = { - [sym_declaration] = STATE(1107), - [sym__declaration_specifiers] = STATE(1115), - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym__abstract_declarator] = STATE(359), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1116), - [sym__type_specifier] = STATE(1117), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_list] = STATE(187), - [sym_parameter_declaration] = STATE(320), - [sym__expression] = STATE(1118), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1096), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2303), + [sym__expression] = STATE(1140), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1036] = { - [aux_sym_preproc_params_repeat1] = STATE(527), - [aux_sym_parameter_list_repeat1] = STATE(497), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_RPAREN] = ACTIONS(2311), - [sym_comment] = ACTIONS(121), - }, - [1037] = { - [sym__declaration_specifiers] = STATE(322), - [sym__declarator] = STATE(1131), - [sym__field_declarator] = STATE(1132), + [sym__declarator] = STATE(84), + [sym__field_declarator] = STATE(205), + [sym__abstract_declarator] = STATE(220), [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_init_declarator] = STATE(1133), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_enumerator] = STATE(1134), - [sym_parameter_declaration] = STATE(1135), - [sym__expression] = STATE(1136), - [sym_comma_expression] = STATE(336), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(763), - [sym_designator] = STATE(547), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym__initializer_list_contents_repeat1] = STATE(764), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2319), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_STAR] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(2337), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2339), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [sym__expression] = STATE(1175), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4251), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4254), + [sym_comment] = ACTIONS(121), + }, + [1037] = { + [sym__expression] = STATE(1175), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1038] = { - [sym_compound_statement] = STATE(1143), - [sym_labeled_statement] = STATE(1143), - [sym_expression_statement] = STATE(1143), - [sym_if_statement] = STATE(1143), - [sym_switch_statement] = STATE(1143), - [sym_case_statement] = STATE(1143), - [sym_while_statement] = STATE(1143), - [sym_do_statement] = STATE(1143), - [sym_for_statement] = STATE(1143), - [sym_return_statement] = STATE(1143), - [sym_break_statement] = STATE(1143), - [sym_continue_statement] = STATE(1143), - [sym_goto_statement] = STATE(1143), - [sym__expression] = STATE(1144), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_COMMA] = ACTIONS(2360), - [anon_sym_RPAREN] = ACTIONS(2360), - [sym_preproc_arg] = ACTIONS(2341), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1957), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2360), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(2420), - [anon_sym_typedef] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_auto] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_restrict] = ACTIONS(2387), - [anon_sym_volatile] = ACTIONS(2387), - [sym_function_specifier] = ACTIONS(2387), - [anon_sym_unsigned] = ACTIONS(1957), - [anon_sym_long] = ACTIONS(1957), - [anon_sym_short] = ACTIONS(1957), - [anon_sym_enum] = ACTIONS(1957), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_union] = ACTIONS(1957), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(2444), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2474), - [anon_sym_STAR_EQ] = ACTIONS(2474), - [anon_sym_SLASH_EQ] = ACTIONS(2474), - [anon_sym_PERCENT_EQ] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(2474), - [anon_sym_DASH_EQ] = ACTIONS(2474), - [anon_sym_LT_LT_EQ] = ACTIONS(2474), - [anon_sym_GT_GT_EQ] = ACTIONS(2474), - [anon_sym_AMP_EQ] = ACTIONS(2474), - [anon_sym_CARET_EQ] = ACTIONS(2474), - [anon_sym_PIPE_EQ] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2484), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_sizeof] = ACTIONS(2497), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_DASH_GT] = ACTIONS(2474), - [sym_number_literal] = ACTIONS(2501), - [sym_char_literal] = ACTIONS(2501), - [sym_string_literal] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2509), - [sym_comment] = ACTIONS(225), + [sym__expression] = STATE(1176), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), + [sym_comment] = ACTIONS(121), }, [1039] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2513), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2520), - [sym_preproc_directive] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_auto] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_restrict] = ACTIONS(2520), - [anon_sym_volatile] = ACTIONS(2520), - [sym_function_specifier] = ACTIONS(2520), - [anon_sym_unsigned] = ACTIONS(2520), - [anon_sym_long] = ACTIONS(2520), - [anon_sym_short] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_goto] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2520), - [sym_number_literal] = ACTIONS(2520), - [sym_char_literal] = ACTIONS(2520), - [sym_string_literal] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2527), + [sym__expression] = STATE(1177), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1040] = { - [sym__expression] = STATE(1148), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(2534), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2545), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_RPAREN] = ACTIONS(2574), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2545), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2545), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2545), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2545), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2545), - [sym_preproc_directive] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_typedef] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_auto] = ACTIONS(2605), - [anon_sym_register] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_restrict] = ACTIONS(2605), - [anon_sym_volatile] = ACTIONS(2605), - [sym_function_specifier] = ACTIONS(2605), - [anon_sym_unsigned] = ACTIONS(2605), - [anon_sym_long] = ACTIONS(2605), - [anon_sym_short] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_struct] = ACTIONS(2605), - [anon_sym_union] = ACTIONS(2605), - [anon_sym_COLON] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_else] = ACTIONS(2664), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(2545), - [anon_sym_default] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_goto] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_sizeof] = ACTIONS(2734), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(2758), - [sym_identifier] = ACTIONS(2770), + [sym__expression] = STATE(1178), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1041] = { - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(261), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_typedef] = ACTIONS(237), - [anon_sym_static] = ACTIONS(237), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [anon_sym_restrict] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [sym_function_specifier] = ACTIONS(237), - [anon_sym_unsigned] = ACTIONS(237), - [anon_sym_long] = ACTIONS(237), - [anon_sym_short] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(237), - [anon_sym_struct] = ACTIONS(237), - [anon_sym_union] = ACTIONS(237), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_TILDE] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_DASH_DASH] = ACTIONS(261), - [anon_sym_PLUS_PLUS] = ACTIONS(261), - [anon_sym_sizeof] = ACTIONS(237), - [sym_number_literal] = ACTIONS(237), - [sym_char_literal] = ACTIONS(237), - [sym_string_literal] = ACTIONS(2788), - [sym_identifier] = ACTIONS(241), + [sym__expression] = STATE(1180), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1042] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(1160), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym__field_declarator] = STATE(244), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_field_declaration] = STATE(248), - [sym_enumerator] = STATE(235), - [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(1161), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(545), - [sym__initializer_list_contents] = STATE(546), - [sym_designator] = STATE(547), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(1162), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_field_declaration_list_repeat1] = STATE(249), - [aux_sym__initializer_list_contents_repeat1] = STATE(548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_COMMA] = ACTIONS(620), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_params_repeat1] = STATE(188), + [anon_sym_LPAREN] = ACTIONS(4260), + [anon_sym_COMMA] = ACTIONS(4266), + [anon_sym_RPAREN] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1043] = { - [ts_builtin_sym_end] = ACTIONS(2815), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(2820), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_RPAREN] = ACTIONS(2839), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(2820), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(2820), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(2820), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(2820), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_RBRACK] = ACTIONS(2839), - [anon_sym_EQ] = ACTIONS(2887), - [anon_sym_typedef] = ACTIONS(2854), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_auto] = ACTIONS(2854), - [anon_sym_register] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_restrict] = ACTIONS(2854), - [anon_sym_volatile] = ACTIONS(2854), - [sym_function_specifier] = ACTIONS(2854), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_STAR_EQ] = ACTIONS(2894), - [anon_sym_SLASH_EQ] = ACTIONS(2894), - [anon_sym_PERCENT_EQ] = ACTIONS(2894), - [anon_sym_PLUS_EQ] = ACTIONS(2894), - [anon_sym_DASH_EQ] = ACTIONS(2894), - [anon_sym_LT_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_GT_EQ] = ACTIONS(2894), - [anon_sym_AMP_EQ] = ACTIONS(2894), - [anon_sym_CARET_EQ] = ACTIONS(2894), - [anon_sym_PIPE_EQ] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2825), - [anon_sym_PLUS_PLUS] = ACTIONS(2825), - [anon_sym_sizeof] = ACTIONS(2854), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_DASH_GT] = ACTIONS(2894), - [sym_number_literal] = ACTIONS(2854), - [sym_char_literal] = ACTIONS(2854), - [sym_string_literal] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2909), - [sym_comment] = ACTIONS(121), - }, - [1044] = { - [sym__declarator] = STATE(1166), - [sym__field_declarator] = STATE(1167), - [sym__abstract_declarator] = STATE(360), + [sym__declarator] = STATE(1182), + [sym__abstract_declarator] = STATE(233), [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), + [sym_abstract_pointer_declarator] = STATE(126), [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), + [sym_abstract_function_declarator] = STATE(126), [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [sym__expression] = STATE(1168), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2940), + [sym_abstract_array_declarator] = STATE(126), + [sym_init_declarator] = STATE(45), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_COMMA] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(491), + [sym_identifier] = ACTIONS(226), + [sym_comment] = ACTIONS(121), + }, + [1044] = { + [anon_sym_extern] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_static] = ACTIONS(183), + [anon_sym_auto] = ACTIONS(183), + [anon_sym_register] = ACTIONS(183), + [anon_sym_const] = ACTIONS(4283), + [anon_sym_restrict] = ACTIONS(4283), + [anon_sym_volatile] = ACTIONS(4283), + [sym_function_specifier] = ACTIONS(183), + [anon_sym_unsigned] = ACTIONS(4283), + [anon_sym_long] = ACTIONS(4283), + [anon_sym_short] = ACTIONS(4283), + [anon_sym_enum] = ACTIONS(4283), + [anon_sym_struct] = ACTIONS(4283), + [anon_sym_union] = ACTIONS(4283), + [sym_identifier] = ACTIONS(4286), [sym_comment] = ACTIONS(121), }, [1045] = { - [sym__declaration_specifiers] = STATE(1170), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(1171), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(2942), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(856), + [sym__abstract_declarator] = STATE(125), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_abstract_function_declarator] = STATE(126), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym_parameter_list] = STATE(127), + [aux_sym__declaration_specifiers_repeat1] = STATE(46), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_COMMA] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(4292), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4298), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [sym_identifier] = ACTIONS(232), [sym_comment] = ACTIONS(121), }, [1046] = { - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(2944), - [anon_sym_RPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(2981), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_STAR_EQ] = ACTIONS(1572), - [anon_sym_SLASH_EQ] = ACTIONS(1572), - [anon_sym_PERCENT_EQ] = ACTIONS(1572), - [anon_sym_PLUS_EQ] = ACTIONS(1572), - [anon_sym_DASH_EQ] = ACTIONS(1572), - [anon_sym_LT_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_GT_EQ] = ACTIONS(1572), - [anon_sym_AMP_EQ] = ACTIONS(1572), - [anon_sym_CARET_EQ] = ACTIONS(1572), - [anon_sym_PIPE_EQ] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1574), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_GT] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1574), - [anon_sym_GT_GT] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1574), - [anon_sym_PERCENT] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_DASH_GT] = ACTIONS(1572), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(617), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(4311), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_LT_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_GT_EQ] = ACTIONS(4313), + [anon_sym_AMP_EQ] = ACTIONS(4313), + [anon_sym_CARET_EQ] = ACTIONS(4313), + [anon_sym_PIPE_EQ] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4317), + [anon_sym_AMP_AMP] = ACTIONS(4317), + [anon_sym_PIPE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_LT_LT] = ACTIONS(4325), + [anon_sym_GT_GT] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1047] = { - [sym__expression] = STATE(1172), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(1173), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declaration_specifiers] = STATE(134), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_declaration] = STATE(379), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [sym_identifier] = ACTIONS(4329), [sym_comment] = ACTIONS(121), }, [1048] = { - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_extern] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2997), - [anon_sym_typedef] = ACTIONS(3000), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_auto] = ACTIONS(3000), - [anon_sym_register] = ACTIONS(3000), - [anon_sym_const] = ACTIONS(3000), - [anon_sym_restrict] = ACTIONS(3000), - [anon_sym_volatile] = ACTIONS(3000), - [sym_function_specifier] = ACTIONS(3000), - [anon_sym_unsigned] = ACTIONS(3000), - [anon_sym_long] = ACTIONS(3000), - [anon_sym_short] = ACTIONS(3000), - [anon_sym_enum] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3000), - [anon_sym_union] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(3000), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_sizeof] = ACTIONS(3000), - [sym_number_literal] = ACTIONS(3000), - [sym_char_literal] = ACTIONS(3000), - [sym_string_literal] = ACTIONS(2997), - [sym_identifier] = ACTIONS(3003), - [sym_comment] = ACTIONS(121), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [sym_preproc_arg] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4331), + [sym_comment] = ACTIONS(161), }, [1049] = { - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3006), - [anon_sym_RPAREN] = ACTIONS(3006), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_extern] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_RBRACK] = ACTIONS(3006), - [anon_sym_typedef] = ACTIONS(3009), - [anon_sym_static] = ACTIONS(3009), - [anon_sym_auto] = ACTIONS(3009), - [anon_sym_register] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_restrict] = ACTIONS(3009), - [anon_sym_volatile] = ACTIONS(3009), - [sym_function_specifier] = ACTIONS(3009), - [anon_sym_unsigned] = ACTIONS(3009), - [anon_sym_long] = ACTIONS(3009), - [anon_sym_short] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3006), - [anon_sym_sizeof] = ACTIONS(3009), - [sym_number_literal] = ACTIONS(3009), - [sym_char_literal] = ACTIONS(3009), - [sym_string_literal] = ACTIONS(3006), - [sym_identifier] = ACTIONS(3012), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1199), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4337), [sym_comment] = ACTIONS(121), }, [1050] = { - [sym_declaration] = STATE(1175), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(1176), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(1176), - [sym_expression_statement] = STATE(1176), - [sym_if_statement] = STATE(1176), - [sym_switch_statement] = STATE(1176), - [sym_case_statement] = STATE(1176), - [sym_while_statement] = STATE(1176), - [sym_do_statement] = STATE(1176), - [sym_for_statement] = STATE(1176), - [sym_return_statement] = STATE(1176), - [sym_break_statement] = STATE(1176), - [sym_continue_statement] = STATE(1176), - [sym_goto_statement] = STATE(1176), - [sym__expression] = STATE(1177), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(4339), + [anon_sym_RPAREN] = ACTIONS(4339), [sym_comment] = ACTIONS(121), }, [1051] = { - [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_extern] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4344), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_typedef] = ACTIONS(4349), + [anon_sym_static] = ACTIONS(4349), + [anon_sym_auto] = ACTIONS(4349), + [anon_sym_register] = ACTIONS(4349), + [anon_sym_const] = ACTIONS(4349), + [anon_sym_restrict] = ACTIONS(4349), + [anon_sym_volatile] = ACTIONS(4349), + [sym_function_specifier] = ACTIONS(4349), + [anon_sym_COLON] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(4353), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(4358), + [anon_sym_EQ_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1778), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_sizeof] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_number_literal] = ACTIONS(4349), + [sym_char_literal] = ACTIONS(4349), + [sym_string_literal] = ACTIONS(4358), + [sym_identifier] = ACTIONS(4362), [sym_comment] = ACTIONS(121), }, [1052] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [sym__declarator] = STATE(84), + [sym__field_declarator] = STATE(205), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym__expression] = STATE(1201), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4366), [sym_comment] = ACTIONS(121), }, [1053] = { - [anon_sym_LPAREN] = ACTIONS(3033), + [sym__expression] = STATE(1201), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1054] = { - [sym__expression] = STATE(1181), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1203), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1055] = { - [anon_sym_COLON] = ACTIONS(3035), + [sym__expression] = STATE(1204), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1056] = { - [anon_sym_LPAREN] = ACTIONS(3037), + [sym__expression] = STATE(1205), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1057] = { - [anon_sym_LPAREN] = ACTIONS(3039), + [sym__expression] = STATE(1207), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4370), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1058] = { - [sym__expression] = STATE(1185), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(4260), + [anon_sym_COMMA] = ACTIONS(4372), + [anon_sym_RPAREN] = ACTIONS(4380), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1059] = { - [sym__expression] = STATE(1186), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_parameter_list] = STATE(92), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(343), [sym_comment] = ACTIONS(121), }, [1060] = { - [sym__expression] = STATE(1187), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_parameter_list] = STATE(217), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(4399), [sym_comment] = ACTIONS(121), }, [1061] = { - [sym__expression] = STATE(1188), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4396), [sym_comment] = ACTIONS(121), }, [1062] = { - [sym__expression] = STATE(1189), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(4402), + [anon_sym_RBRACE] = ACTIONS(4402), [sym_comment] = ACTIONS(121), }, [1063] = { - [sym__expression] = STATE(1190), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(4405), [sym_comment] = ACTIONS(121), }, [1064] = { - [sym__expression] = STATE(1191), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(4408), + [anon_sym_RPAREN] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_QMARK] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_LT_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_GT_EQ] = ACTIONS(4423), + [anon_sym_AMP_EQ] = ACTIONS(4423), + [anon_sym_CARET_EQ] = ACTIONS(4423), + [anon_sym_PIPE_EQ] = ACTIONS(4423), + [anon_sym_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4427), + [anon_sym_AMP_AMP] = ACTIONS(4427), + [anon_sym_PIPE] = ACTIONS(4425), + [anon_sym_CARET] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4429), + [anon_sym_BANG_EQ] = ACTIONS(4429), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_GT] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4433), + [anon_sym_GT_EQ] = ACTIONS(4433), + [anon_sym_LT_LT] = ACTIONS(4435), + [anon_sym_GT_GT] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_SLASH] = ACTIONS(4417), + [anon_sym_PERCENT] = ACTIONS(4417), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1065] = { - [sym__expression] = STATE(1192), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1217), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [1066] = { - [sym__expression] = STATE(1193), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_preproc_include] = STATE(162), + [sym_preproc_def] = STATE(162), + [sym_preproc_function_def] = STATE(162), + [sym_preproc_call] = STATE(162), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_declaration] = STATE(162), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(325), + [sym__initializer_list_contents] = STATE(326), + [sym_designator] = STATE(327), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(162), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(168), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym__initializer_list_contents_repeat1] = STATE(328), + [anon_sym_LPAREN] = ACTIONS(2744), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(957), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(121), }, [1067] = { - [sym__expression] = STATE(1194), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1219), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1068] = { - [sym__expression] = STATE(1195), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(4439), [sym_comment] = ACTIONS(121), }, [1069] = { - [sym__expression] = STATE(1196), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1127), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1070] = { - [sym__expression] = STATE(1197), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_STAR_EQ] = ACTIONS(880), - [anon_sym_SLASH_EQ] = ACTIONS(880), - [anon_sym_PERCENT_EQ] = ACTIONS(880), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), - [anon_sym_LT_LT_EQ] = ACTIONS(880), - [anon_sym_GT_GT_EQ] = ACTIONS(880), - [anon_sym_AMP_EQ] = ACTIONS(880), - [anon_sym_CARET_EQ] = ACTIONS(880), - [anon_sym_PIPE_EQ] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_CARET] = ACTIONS(882), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_PERCENT] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_sizeof] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_DASH_GT] = ACTIONS(880), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1071] = { - [sym__expression] = STATE(1199), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(4444), + [sym__pound_include] = ACTIONS(4453), + [sym__pound_define] = ACTIONS(4453), + [sym__pound_if] = ACTIONS(4453), + [sym__pound_ifdef] = ACTIONS(4453), + [sym__pound_endif] = ACTIONS(4453), + [sym__pound_else] = ACTIONS(4453), + [sym_preproc_directive] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_extern] = ACTIONS(4453), + [anon_sym_LBRACE] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_typedef] = ACTIONS(4453), + [anon_sym_static] = ACTIONS(4453), + [anon_sym_auto] = ACTIONS(4453), + [anon_sym_register] = ACTIONS(4453), + [anon_sym_const] = ACTIONS(4453), + [anon_sym_restrict] = ACTIONS(4453), + [anon_sym_volatile] = ACTIONS(4453), + [sym_function_specifier] = ACTIONS(4453), + [anon_sym_unsigned] = ACTIONS(4453), + [anon_sym_long] = ACTIONS(4453), + [anon_sym_short] = ACTIONS(4453), + [anon_sym_enum] = ACTIONS(4453), + [anon_sym_struct] = ACTIONS(4453), + [anon_sym_union] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4471), + [anon_sym_switch] = ACTIONS(4453), + [anon_sym_case] = ACTIONS(4453), + [anon_sym_default] = ACTIONS(4453), + [anon_sym_while] = ACTIONS(4453), + [anon_sym_do] = ACTIONS(4453), + [anon_sym_for] = ACTIONS(4453), + [anon_sym_return] = ACTIONS(4453), + [anon_sym_break] = ACTIONS(4453), + [anon_sym_continue] = ACTIONS(4453), + [anon_sym_goto] = ACTIONS(4453), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4444), + [anon_sym_TILDE] = ACTIONS(4444), + [anon_sym_PLUS] = ACTIONS(4453), + [anon_sym_DASH] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4444), + [anon_sym_PLUS_PLUS] = ACTIONS(4444), + [anon_sym_sizeof] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [sym_char_literal] = ACTIONS(4453), + [sym_string_literal] = ACTIONS(4444), + [sym_identifier] = ACTIONS(4462), [sym_comment] = ACTIONS(121), }, [1072] = { - [sym_identifier] = ACTIONS(3057), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_PERCENT_EQ] = ACTIONS(4502), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_CARET_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4511), + [anon_sym_BANG_EQ] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4520), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4490), + [anon_sym_PERCENT] = ACTIONS(4490), + [anon_sym_DASH_DASH] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4529), [sym_comment] = ACTIONS(121), }, [1073] = { - [sym_function_definition] = STATE(222), - [sym_declaration] = STATE(222), - [sym__declaration_specifiers] = STATE(223), - [sym_declaration_list] = STATE(222), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_concatenated_string_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(490), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(492), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_auto] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [sym_function_specifier] = ACTIONS(3093), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_COLON] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(492), - [anon_sym_switch] = ACTIONS(492), - [anon_sym_case] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_while] = ACTIONS(492), - [anon_sym_do] = ACTIONS(492), - [anon_sym_for] = ACTIONS(492), - [anon_sym_return] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_continue] = ACTIONS(492), - [anon_sym_goto] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_LT_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_GT_EQ] = ACTIONS(3065), - [anon_sym_AMP_EQ] = ACTIONS(3065), - [anon_sym_CARET_EQ] = ACTIONS(3065), - [anon_sym_PIPE_EQ] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_PERCENT] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_DASH_GT] = ACTIONS(3065), - [sym_number_literal] = ACTIONS(492), - [sym_char_literal] = ACTIONS(492), - [sym_string_literal] = ACTIONS(3113), - [sym_identifier] = ACTIONS(3118), + [sym_preproc_include] = STATE(1077), + [sym_preproc_def] = STATE(1077), + [sym_preproc_function_def] = STATE(1077), + [sym_preproc_call] = STATE(1077), + [sym_preproc_if] = STATE(17), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_preproc_else] = STATE(58), + [sym_preproc_else_in_compound_statement] = STATE(411), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(1077), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(59), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(412), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(2516), + [sym__pound_ifdef] = ACTIONS(2518), + [sym__pound_endif] = ACTIONS(4532), + [sym__pound_else] = ACTIONS(4534), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), [sym_comment] = ACTIONS(121), }, [1074] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(40), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_params] = STATE(175), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(217), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_enumerator_list] = STATE(236), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_field_declaration_list] = STATE(1205), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(218), - [aux_sym_preproc_params_repeat1] = STATE(527), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3121), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(3123), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(496), - [anon_sym_LF] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3136), - [anon_sym_RPAREN] = ACTIONS(3150), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(3163), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3165), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(3167), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(3167), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(3169), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_EQ] = ACTIONS(3224), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_auto] = ACTIONS(3230), - [anon_sym_register] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_restrict] = ACTIONS(3237), - [anon_sym_volatile] = ACTIONS(3237), - [sym_function_specifier] = ACTIONS(3244), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_COLON] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_case] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3289), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_STAR_EQ] = ACTIONS(3291), - [anon_sym_SLASH_EQ] = ACTIONS(3291), - [anon_sym_PERCENT_EQ] = ACTIONS(3291), - [anon_sym_PLUS_EQ] = ACTIONS(3291), - [anon_sym_DASH_EQ] = ACTIONS(3291), - [anon_sym_LT_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_GT_EQ] = ACTIONS(3291), - [anon_sym_AMP_EQ] = ACTIONS(3291), - [anon_sym_CARET_EQ] = ACTIONS(3291), - [anon_sym_PIPE_EQ] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3294), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_AMP_AMP] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_EQ_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_EQ] = ACTIONS(3291), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_sizeof] = ACTIONS(3326), - [anon_sym_DOT] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(3291), - [sym_number_literal] = ACTIONS(3337), - [sym_char_literal] = ACTIONS(3337), - [sym_string_literal] = ACTIONS(3344), - [sym_identifier] = ACTIONS(3351), - [sym_comment] = ACTIONS(225), + [sym_preproc_include] = STATE(1077), + [sym_preproc_def] = STATE(1077), + [sym_preproc_function_def] = STATE(1077), + [sym_preproc_call] = STATE(1077), + [sym_preproc_if] = STATE(17), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_preproc_else] = STATE(61), + [sym_preproc_else_in_compound_statement] = STATE(414), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(1077), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(62), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(415), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(2516), + [sym__pound_ifdef] = ACTIONS(2518), + [sym__pound_endif] = ACTIONS(4536), + [sym__pound_else] = ACTIONS(4534), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), + [sym_comment] = ACTIONS(121), }, [1075] = { - [ts_builtin_sym_end] = ACTIONS(3358), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3361), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3358), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(3361), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3361), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(3361), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(3361), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(3361), - [sym_preproc_directive] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_auto] = ACTIONS(3361), - [anon_sym_register] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_restrict] = ACTIONS(3361), - [anon_sym_volatile] = ACTIONS(3361), - [sym_function_specifier] = ACTIONS(3361), - [anon_sym_unsigned] = ACTIONS(3361), - [anon_sym_long] = ACTIONS(3361), - [anon_sym_short] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3361), - [anon_sym_union] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_default] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_goto] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_sizeof] = ACTIONS(3361), - [sym_number_literal] = ACTIONS(3361), - [sym_char_literal] = ACTIONS(3361), - [sym_string_literal] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3364), - [sym_comment] = ACTIONS(121), + [sym_preproc_arg] = ACTIONS(4538), + [sym_comment] = ACTIONS(161), }, [1076] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3367), + [sym_identifier] = ACTIONS(4540), [sym_comment] = ACTIONS(121), }, [1077] = { - [ts_builtin_sym_end] = ACTIONS(3369), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3372), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3369), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(3372), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3372), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(3372), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(3372), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_auto] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [sym_function_specifier] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_goto] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_sizeof] = ACTIONS(3372), - [sym_number_literal] = ACTIONS(3372), - [sym_char_literal] = ACTIONS(3372), - [sym_string_literal] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(859), + [sym__pound_include] = ACTIONS(4542), + [sym__pound_define] = ACTIONS(4542), + [sym__pound_if] = ACTIONS(4542), + [sym__pound_ifdef] = ACTIONS(4542), + [sym__pound_endif] = ACTIONS(4542), + [sym__pound_else] = ACTIONS(4542), + [sym_preproc_directive] = ACTIONS(4545), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_extern] = ACTIONS(4542), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_typedef] = ACTIONS(4542), + [anon_sym_static] = ACTIONS(4542), + [anon_sym_auto] = ACTIONS(4542), + [anon_sym_register] = ACTIONS(4542), + [anon_sym_const] = ACTIONS(4542), + [anon_sym_restrict] = ACTIONS(4542), + [anon_sym_volatile] = ACTIONS(4542), + [sym_function_specifier] = ACTIONS(4542), + [anon_sym_unsigned] = ACTIONS(4542), + [anon_sym_long] = ACTIONS(4542), + [anon_sym_short] = ACTIONS(4542), + [anon_sym_enum] = ACTIONS(4542), + [anon_sym_struct] = ACTIONS(4542), + [anon_sym_union] = ACTIONS(4542), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(861), + [anon_sym_case] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_goto] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_sizeof] = ACTIONS(861), + [sym_number_literal] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [sym_string_literal] = ACTIONS(859), + [sym_identifier] = ACTIONS(4545), [sym_comment] = ACTIONS(121), }, [1078] = { - [sym__expression] = STATE(1208), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(3378), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3383), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3388), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(3383), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3383), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(3383), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(3383), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(3383), - [sym_preproc_directive] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_typedef] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_auto] = ACTIONS(3383), - [anon_sym_register] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_restrict] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(3383), - [sym_function_specifier] = ACTIONS(3383), - [anon_sym_unsigned] = ACTIONS(3383), - [anon_sym_long] = ACTIONS(3383), - [anon_sym_short] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_union] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_case] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3426), - [anon_sym_DASH] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3432), - [anon_sym_sizeof] = ACTIONS(3438), - [sym_number_literal] = ACTIONS(3444), - [sym_char_literal] = ACTIONS(3444), - [sym_string_literal] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3456), - [sym_comment] = ACTIONS(121), - }, - [1079] = { - [sym__declarator] = STATE(1214), - [sym__field_declarator] = STATE(422), - [sym__abstract_declarator] = STATE(501), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_init_declarator] = STATE(141), - [sym_parameter_list] = STATE(187), - [sym__expression] = STATE(1215), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(1230), - [anon_sym_RPAREN] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_STAR] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_RBRACK] = ACTIONS(3468), - [anon_sym_COLON] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3470), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1173), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, - [1080] = { - [sym_compound_statement] = STATE(1216), - [sym_parameter_list] = STATE(145), - [aux_sym_declaration_repeat1] = STATE(319), - [anon_sym_LPAREN] = ACTIONS(3472), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_LBRACE] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3496), + [1079] = { + [sym_compound_statement] = STATE(1224), + [sym_labeled_statement] = STATE(1224), + [sym_expression_statement] = STATE(1224), + [sym_if_statement] = STATE(1224), + [sym_switch_statement] = STATE(1224), + [sym_case_statement] = STATE(1224), + [sym_while_statement] = STATE(1224), + [sym_do_statement] = STATE(1224), + [sym_for_statement] = STATE(1224), + [sym_return_statement] = STATE(1224), + [sym_break_statement] = STATE(1224), + [sym_continue_statement] = STATE(1224), + [sym_goto_statement] = STATE(1224), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), + [sym_comment] = ACTIONS(121), + }, + [1080] = { + [sym__expression] = STATE(1226), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1081] = { - [sym_parameter_list] = STATE(425), - [aux_sym_field_declaration_repeat1] = STATE(1101), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_COMMA] = ACTIONS(3502), - [anon_sym_RPAREN] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3518), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1229), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(4311), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_LT_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_GT_EQ] = ACTIONS(4313), + [anon_sym_AMP_EQ] = ACTIONS(4313), + [anon_sym_CARET_EQ] = ACTIONS(4313), + [anon_sym_PIPE_EQ] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4317), + [anon_sym_AMP_AMP] = ACTIONS(4317), + [anon_sym_PIPE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_LT_LT] = ACTIONS(4325), + [anon_sym_GT_GT] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1082] = { - [sym_parameter_list] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_RPAREN] = ACTIONS(3529), - [anon_sym_LBRACK] = ACTIONS(3535), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1230), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [1083] = { - [aux_sym_declaration_repeat1] = STATE(319), - [anon_sym_COMMA] = ACTIONS(3538), - [anon_sym_SEMI] = ACTIONS(3542), + [sym_preproc_include] = STATE(162), + [sym_preproc_def] = STATE(162), + [sym_preproc_function_def] = STATE(162), + [sym_preproc_call] = STATE(162), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_declaration] = STATE(162), + [sym__declaration_specifiers] = STATE(165), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(325), + [sym__initializer_list_contents] = STATE(326), + [sym_designator] = STATE(327), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(162), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(168), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym__initializer_list_contents_repeat1] = STATE(328), + [anon_sym_LPAREN] = ACTIONS(2744), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(957), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(121), }, [1084] = { - [ts_builtin_sym_end] = ACTIONS(3546), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3562), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3546), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(3562), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3562), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(3562), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(3562), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(3562), - [sym_preproc_directive] = ACTIONS(3578), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_extern] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_typedef] = ACTIONS(3562), - [anon_sym_static] = ACTIONS(3562), - [anon_sym_auto] = ACTIONS(3562), - [anon_sym_register] = ACTIONS(3562), - [anon_sym_const] = ACTIONS(3562), - [anon_sym_restrict] = ACTIONS(3562), - [anon_sym_volatile] = ACTIONS(3562), - [sym_function_specifier] = ACTIONS(3562), - [anon_sym_unsigned] = ACTIONS(3562), - [anon_sym_long] = ACTIONS(3562), - [anon_sym_short] = ACTIONS(3562), - [anon_sym_enum] = ACTIONS(3562), - [anon_sym_struct] = ACTIONS(3562), - [anon_sym_union] = ACTIONS(3562), - [anon_sym_if] = ACTIONS(3562), - [anon_sym_else] = ACTIONS(3594), - [anon_sym_switch] = ACTIONS(3562), - [anon_sym_case] = ACTIONS(3562), - [anon_sym_default] = ACTIONS(3562), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3562), - [anon_sym_for] = ACTIONS(3562), - [anon_sym_return] = ACTIONS(3562), - [anon_sym_break] = ACTIONS(3562), - [anon_sym_continue] = ACTIONS(3562), - [anon_sym_goto] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_PLUS] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_sizeof] = ACTIONS(3562), - [sym_number_literal] = ACTIONS(3562), - [sym_char_literal] = ACTIONS(3562), - [sym_string_literal] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3578), + [ts_builtin_sym_end] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__pound_include] = ACTIONS(4571), + [sym__pound_define] = ACTIONS(4571), + [sym__pound_if] = ACTIONS(4571), + [sym__pound_ifdef] = ACTIONS(4571), + [sym__pound_endif] = ACTIONS(4571), + [sym__pound_else] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4574), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_extern] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_LBRACK] = ACTIONS(4567), + [anon_sym_RBRACK] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(4577), + [anon_sym_static] = ACTIONS(4577), + [anon_sym_auto] = ACTIONS(4577), + [anon_sym_register] = ACTIONS(4577), + [anon_sym_const] = ACTIONS(4577), + [anon_sym_restrict] = ACTIONS(4577), + [anon_sym_volatile] = ACTIONS(4577), + [sym_function_specifier] = ACTIONS(4577), + [anon_sym_unsigned] = ACTIONS(4571), + [anon_sym_long] = ACTIONS(4571), + [anon_sym_short] = ACTIONS(4571), + [anon_sym_enum] = ACTIONS(4571), + [anon_sym_struct] = ACTIONS(4571), + [anon_sym_union] = ACTIONS(4571), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_return] = ACTIONS(785), + [anon_sym_break] = ACTIONS(785), + [anon_sym_continue] = ACTIONS(785), + [anon_sym_goto] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_sizeof] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_DASH_GT] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(4591), + [sym_char_literal] = ACTIONS(4591), + [sym_string_literal] = ACTIONS(4595), + [sym_identifier] = ACTIONS(4599), [sym_comment] = ACTIONS(121), }, [1085] = { - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_extern] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2997), - [anon_sym_typedef] = ACTIONS(3000), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_auto] = ACTIONS(3000), - [anon_sym_register] = ACTIONS(3000), - [anon_sym_const] = ACTIONS(3625), - [anon_sym_restrict] = ACTIONS(3625), - [anon_sym_volatile] = ACTIONS(3625), - [sym_function_specifier] = ACTIONS(3000), - [anon_sym_unsigned] = ACTIONS(3625), - [anon_sym_long] = ACTIONS(3625), - [anon_sym_short] = ACTIONS(3625), - [anon_sym_enum] = ACTIONS(3625), - [anon_sym_struct] = ACTIONS(3625), - [anon_sym_union] = ACTIONS(3625), - [anon_sym_COLON] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(3000), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_sizeof] = ACTIONS(3000), - [sym_number_literal] = ACTIONS(3000), - [sym_char_literal] = ACTIONS(3000), - [sym_string_literal] = ACTIONS(2997), - [sym_identifier] = ACTIONS(3630), + [sym__expression] = STATE(1232), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1086] = { - [sym__abstract_declarator] = STATE(1219), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_abstract_function_declarator] = STATE(186), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym_parameter_list] = STATE(187), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3639), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3639), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3639), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_BANG] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3639), - [anon_sym_PLUS_PLUS] = ACTIONS(3639), - [anon_sym_sizeof] = ACTIONS(3655), - [sym_number_literal] = ACTIONS(3655), - [sym_char_literal] = ACTIONS(3655), - [sym_string_literal] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3658), + [sym__expression] = STATE(1233), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1087] = { - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_RPAREN] = ACTIONS(3661), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym_extern] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_RBRACK] = ACTIONS(3661), - [anon_sym_typedef] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_auto] = ACTIONS(3664), - [anon_sym_register] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [sym_function_specifier] = ACTIONS(3664), - [anon_sym_COLON] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_BANG] = ACTIONS(3661), - [anon_sym_TILDE] = ACTIONS(3661), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_PLUS_PLUS] = ACTIONS(3661), - [anon_sym_sizeof] = ACTIONS(3664), - [sym_number_literal] = ACTIONS(3664), - [sym_char_literal] = ACTIONS(3664), - [sym_string_literal] = ACTIONS(3661), - [sym_identifier] = ACTIONS(3667), + [sym__expression] = STATE(1234), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1088] = { - [anon_sym_LPAREN] = ACTIONS(3670), - [anon_sym_COMMA] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(3670), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym_extern] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_RBRACK] = ACTIONS(3670), - [anon_sym_typedef] = ACTIONS(3675), - [anon_sym_static] = ACTIONS(3675), - [anon_sym_auto] = ACTIONS(3675), - [anon_sym_register] = ACTIONS(3675), - [anon_sym_const] = ACTIONS(3675), - [anon_sym_restrict] = ACTIONS(3675), - [anon_sym_volatile] = ACTIONS(3675), - [sym_function_specifier] = ACTIONS(3675), - [anon_sym_COLON] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_sizeof] = ACTIONS(3675), - [sym_number_literal] = ACTIONS(3675), - [sym_char_literal] = ACTIONS(3675), - [sym_string_literal] = ACTIONS(3670), - [sym_identifier] = ACTIONS(3680), + [sym__expression] = STATE(1235), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1089] = { - [anon_sym_LPAREN] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3685), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym_RBRACE] = ACTIONS(3685), - [anon_sym_STAR] = ACTIONS(3685), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_auto] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [sym_function_specifier] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_struct] = ACTIONS(3688), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_COLON] = ACTIONS(3685), - [sym_identifier] = ACTIONS(3691), + [sym__expression] = STATE(1237), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4604), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1090] = { - [aux_sym_enumerator_list_repeat1] = STATE(414), - [anon_sym_COMMA] = ACTIONS(3694), - [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1091] = { - [anon_sym_LPAREN] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3702), - [anon_sym_RPAREN] = ACTIONS(3702), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(864), - [anon_sym_COLON] = ACTIONS(1460), + [sym__declarator] = STATE(43), + [sym__field_declarator] = STATE(116), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_init_declarator] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(4614), + [anon_sym_COLON] = ACTIONS(457), + [sym_identifier] = ACTIONS(4616), [sym_comment] = ACTIONS(121), }, [1092] = { - [aux_sym_parameter_list_repeat1] = STATE(497), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(3714), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(4627), + [anon_sym_SLASH_EQ] = ACTIONS(4627), + [anon_sym_PERCENT_EQ] = ACTIONS(4627), + [anon_sym_PLUS_EQ] = ACTIONS(4627), + [anon_sym_DASH_EQ] = ACTIONS(4627), + [anon_sym_LT_LT_EQ] = ACTIONS(4627), + [anon_sym_GT_GT_EQ] = ACTIONS(4627), + [anon_sym_AMP_EQ] = ACTIONS(4627), + [anon_sym_CARET_EQ] = ACTIONS(4627), + [anon_sym_PIPE_EQ] = ACTIONS(4627), + [anon_sym_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4629), + [anon_sym_CARET] = ACTIONS(4629), + [anon_sym_EQ_EQ] = ACTIONS(4633), + [anon_sym_BANG_EQ] = ACTIONS(4633), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_LT_LT] = ACTIONS(4639), + [anon_sym_GT_GT] = ACTIONS(4639), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_PERCENT] = ACTIONS(4621), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1093] = { - [ts_builtin_sym_end] = ACTIONS(3718), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3732), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(3732), - [anon_sym_LPAREN] = ACTIONS(3718), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(3732), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3732), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(3732), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(3732), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(3732), - [sym_preproc_directive] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3718), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3718), - [anon_sym_RBRACE] = ACTIONS(3718), - [anon_sym_STAR] = ACTIONS(3718), - [anon_sym_typedef] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_auto] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_restrict] = ACTIONS(3732), - [anon_sym_volatile] = ACTIONS(3732), - [sym_function_specifier] = ACTIONS(3732), - [anon_sym_unsigned] = ACTIONS(3732), - [anon_sym_long] = ACTIONS(3732), - [anon_sym_short] = ACTIONS(3732), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_union] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_else] = ACTIONS(3760), - [anon_sym_switch] = ACTIONS(3732), - [anon_sym_case] = ACTIONS(3732), - [anon_sym_default] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3774), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_goto] = ACTIONS(3732), - [anon_sym_AMP] = ACTIONS(3718), - [anon_sym_BANG] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3718), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3718), - [anon_sym_PLUS_PLUS] = ACTIONS(3718), - [anon_sym_sizeof] = ACTIONS(3732), - [sym_number_literal] = ACTIONS(3732), - [sym_char_literal] = ACTIONS(3732), - [sym_string_literal] = ACTIONS(3718), - [sym_identifier] = ACTIONS(3746), + [sym__declaration_specifiers] = STATE(134), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym__abstract_declarator] = STATE(219), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(1044), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_list] = STATE(127), + [sym_parameter_declaration] = STATE(132), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1217), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4236), [sym_comment] = ACTIONS(121), }, [1094] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1102), - [anon_sym_LPAREN] = ACTIONS(3789), - [anon_sym_COMMA] = ACTIONS(3805), - [anon_sym_RPAREN] = ACTIONS(3828), - [anon_sym_SEMI] = ACTIONS(3847), - [anon_sym_RBRACE] = ACTIONS(3865), - [anon_sym_STAR] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3900), - [anon_sym_RBRACK] = ACTIONS(3916), - [anon_sym_EQ] = ACTIONS(3932), - [anon_sym_COLON] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3964), - [anon_sym_STAR_EQ] = ACTIONS(3980), - [anon_sym_SLASH_EQ] = ACTIONS(3980), - [anon_sym_PERCENT_EQ] = ACTIONS(3980), - [anon_sym_PLUS_EQ] = ACTIONS(3980), - [anon_sym_DASH_EQ] = ACTIONS(3980), - [anon_sym_LT_LT_EQ] = ACTIONS(3980), - [anon_sym_GT_GT_EQ] = ACTIONS(3980), - [anon_sym_AMP_EQ] = ACTIONS(3980), - [anon_sym_CARET_EQ] = ACTIONS(3980), - [anon_sym_PIPE_EQ] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3996), - [anon_sym_PIPE_PIPE] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_PIPE] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_EQ_EQ] = ACTIONS(4028), - [anon_sym_BANG_EQ] = ACTIONS(4028), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_LT_EQ] = ACTIONS(4060), - [anon_sym_GT_EQ] = ACTIONS(4060), - [anon_sym_LT_LT] = ACTIONS(4076), - [anon_sym_GT_GT] = ACTIONS(4076), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4108), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_DASH_GT] = ACTIONS(4124), + [sym__declarator] = STATE(1096), + [sym__field_declarator] = STATE(1097), + [sym__abstract_declarator] = STATE(220), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [sym__expression] = STATE(1219), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2895), [sym_comment] = ACTIONS(121), }, [1095] = { - [anon_sym_RPAREN] = ACTIONS(4140), - [anon_sym_SEMI] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(4641), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1096] = { - [anon_sym_RPAREN] = ACTIONS(4146), + [sym_parameter_list] = STATE(92), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_COMMA] = ACTIONS(499), + [anon_sym_RPAREN] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(499), [sym_comment] = ACTIONS(121), }, [1097] = { - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym_RBRACE] = ACTIONS(4157), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(1372), - [anon_sym_EQ] = ACTIONS(1374), - [anon_sym_COLON] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1372), - [anon_sym_STAR_EQ] = ACTIONS(1372), - [anon_sym_SLASH_EQ] = ACTIONS(1372), - [anon_sym_PERCENT_EQ] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1372), - [anon_sym_DASH_EQ] = ACTIONS(1372), - [anon_sym_LT_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_GT_EQ] = ACTIONS(1372), - [anon_sym_AMP_EQ] = ACTIONS(1372), - [anon_sym_CARET_EQ] = ACTIONS(1372), - [anon_sym_PIPE_EQ] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_CARET] = ACTIONS(1374), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_LT_LT] = ACTIONS(1374), - [anon_sym_GT_GT] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1374), - [anon_sym_PERCENT] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DASH_GT] = ACTIONS(1372), + [sym_parameter_list] = STATE(217), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_COLON] = ACTIONS(1051), [sym_comment] = ACTIONS(121), }, [1098] = { - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(4162), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4651), + [anon_sym_RPAREN] = ACTIONS(4651), + [anon_sym_SEMI] = ACTIONS(4651), + [anon_sym_RBRACE] = ACTIONS(4651), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_RBRACK] = ACTIONS(4651), + [anon_sym_EQ] = ACTIONS(4662), + [anon_sym_COLON] = ACTIONS(4651), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_PERCENT_EQ] = ACTIONS(4670), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP_EQ] = ACTIONS(4670), + [anon_sym_CARET_EQ] = ACTIONS(4670), + [anon_sym_PIPE_EQ] = ACTIONS(4670), + [anon_sym_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4674), + [anon_sym_CARET] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4690), + [anon_sym_GT_EQ] = ACTIONS(4690), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4654), + [anon_sym_PERCENT] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4702), + [anon_sym_PLUS_PLUS] = ACTIONS(4702), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_DASH_GT] = ACTIONS(4706), [sym_comment] = ACTIONS(121), }, [1099] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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_preproc_else] = STATE(1237), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(475), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(4165), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(564), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4710), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_COLON] = ACTIONS(1397), [sym_comment] = ACTIONS(121), }, [1100] = { - [sym_storage_class_specifier] = STATE(167), - [sym_type_qualifier] = STATE(167), - [sym__type_specifier] = STATE(169), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_RBRACK] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(477), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_COLON] = ACTIONS(4184), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_BANG] = ACTIONS(4184), - [anon_sym_TILDE] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_sizeof] = ACTIONS(4187), - [sym_number_literal] = ACTIONS(4187), - [sym_char_literal] = ACTIONS(4187), - [sym_string_literal] = ACTIONS(4184), - [sym_identifier] = ACTIONS(4190), + [sym__expression] = STATE(1147), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(3468), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1101] = { - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym_COLON] = ACTIONS(4196), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1102] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(4198), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4723), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(4729), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4740), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(4743), + [anon_sym_COLON] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(4746), + [anon_sym_STAR_EQ] = ACTIONS(4749), + [anon_sym_SLASH_EQ] = ACTIONS(4749), + [anon_sym_PERCENT_EQ] = ACTIONS(4749), + [anon_sym_PLUS_EQ] = ACTIONS(4749), + [anon_sym_DASH_EQ] = ACTIONS(4749), + [anon_sym_LT_LT_EQ] = ACTIONS(4749), + [anon_sym_GT_GT_EQ] = ACTIONS(4749), + [anon_sym_AMP_EQ] = ACTIONS(4749), + [anon_sym_CARET_EQ] = ACTIONS(4749), + [anon_sym_PIPE_EQ] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4752), + [anon_sym_CARET] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_LT_LT] = ACTIONS(4767), + [anon_sym_GT_GT] = ACTIONS(4767), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4737), + [anon_sym_PERCENT] = ACTIONS(4737), + [anon_sym_DASH_DASH] = ACTIONS(4773), + [anon_sym_PLUS_PLUS] = ACTIONS(4773), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_DASH_GT] = ACTIONS(4776), [sym_comment] = ACTIONS(121), }, [1103] = { - [sym_designator] = STATE(676), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(4779), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(4783), [sym_comment] = ACTIONS(121), }, [1104] = { - [sym__declaration_specifiers] = STATE(322), - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym__abstract_declarator] = STATE(359), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1116), - [sym__type_specifier] = STATE(1117), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_list] = STATE(187), - [sym_parameter_declaration] = STATE(320), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1245), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1105] = { - [aux_sym_preproc_params_repeat1] = STATE(527), - [aux_sym_parameter_list_repeat1] = STATE(497), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4786), + [sym__pound_include] = ACTIONS(3408), + [sym__pound_define] = ACTIONS(3408), + [sym__pound_if] = ACTIONS(3408), + [sym__pound_ifdef] = ACTIONS(3408), + [sym__pound_endif] = ACTIONS(3408), + [sym__pound_else] = ACTIONS(3408), + [sym_preproc_directive] = ACTIONS(4789), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_STAR] = ACTIONS(4786), + [anon_sym_typedef] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_auto] = ACTIONS(3408), + [anon_sym_register] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_restrict] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [sym_function_specifier] = ACTIONS(3408), + [anon_sym_unsigned] = ACTIONS(3408), + [anon_sym_long] = ACTIONS(3408), + [anon_sym_short] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(4786), + [anon_sym_BANG] = ACTIONS(4786), + [anon_sym_TILDE] = ACTIONS(4786), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(4786), + [anon_sym_PLUS_PLUS] = ACTIONS(4786), + [anon_sym_sizeof] = ACTIONS(3408), + [sym_number_literal] = ACTIONS(3408), + [sym_char_literal] = ACTIONS(3408), + [sym_string_literal] = ACTIONS(4786), + [sym_identifier] = ACTIONS(4789), [sym_comment] = ACTIONS(121), }, [1106] = { - [anon_sym_LF] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_RPAREN] = ACTIONS(4212), - [sym_preproc_arg] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4215), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_STAR] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_RBRACK] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_STAR_EQ] = ACTIONS(4217), - [anon_sym_SLASH_EQ] = ACTIONS(4217), - [anon_sym_PERCENT_EQ] = ACTIONS(4217), - [anon_sym_PLUS_EQ] = ACTIONS(4217), - [anon_sym_DASH_EQ] = ACTIONS(4217), - [anon_sym_LT_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_GT_EQ] = ACTIONS(4217), - [anon_sym_AMP_EQ] = ACTIONS(4217), - [anon_sym_CARET_EQ] = ACTIONS(4217), - [anon_sym_PIPE_EQ] = ACTIONS(4217), - [anon_sym_AMP] = ACTIONS(4217), - [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(4217), - [anon_sym_PIPE] = ACTIONS(4217), - [anon_sym_CARET] = ACTIONS(4217), - [anon_sym_EQ_EQ] = ACTIONS(4217), - [anon_sym_BANG_EQ] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4217), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_LT_EQ] = ACTIONS(4217), - [anon_sym_GT_EQ] = ACTIONS(4217), - [anon_sym_LT_LT] = ACTIONS(4217), - [anon_sym_GT_GT] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4217), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4217), - [anon_sym_PLUS_PLUS] = ACTIONS(4217), - [anon_sym_DOT] = ACTIONS(4217), - [anon_sym_DASH_GT] = ACTIONS(4217), - [sym_comment] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(4792), + [sym__pound_include] = ACTIONS(4796), + [sym__pound_define] = ACTIONS(4796), + [sym__pound_if] = ACTIONS(4796), + [sym__pound_ifdef] = ACTIONS(4796), + [sym__pound_endif] = ACTIONS(4796), + [sym__pound_else] = ACTIONS(4796), + [sym_preproc_directive] = ACTIONS(4800), + [anon_sym_SEMI] = ACTIONS(4792), + [anon_sym_extern] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [anon_sym_typedef] = ACTIONS(4796), + [anon_sym_static] = ACTIONS(4796), + [anon_sym_auto] = ACTIONS(4796), + [anon_sym_register] = ACTIONS(4796), + [anon_sym_const] = ACTIONS(4796), + [anon_sym_restrict] = ACTIONS(4796), + [anon_sym_volatile] = ACTIONS(4796), + [sym_function_specifier] = ACTIONS(4796), + [anon_sym_unsigned] = ACTIONS(4796), + [anon_sym_long] = ACTIONS(4796), + [anon_sym_short] = ACTIONS(4796), + [anon_sym_enum] = ACTIONS(4796), + [anon_sym_struct] = ACTIONS(4796), + [anon_sym_union] = ACTIONS(4796), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4796), + [anon_sym_switch] = ACTIONS(4796), + [anon_sym_case] = ACTIONS(4796), + [anon_sym_default] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_do] = ACTIONS(4796), + [anon_sym_for] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_goto] = ACTIONS(4796), + [anon_sym_AMP] = ACTIONS(4792), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_TILDE] = ACTIONS(4792), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4792), + [anon_sym_PLUS_PLUS] = ACTIONS(4792), + [anon_sym_sizeof] = ACTIONS(4796), + [sym_number_literal] = ACTIONS(4796), + [sym_char_literal] = ACTIONS(4796), + [sym_string_literal] = ACTIONS(4792), + [sym_identifier] = ACTIONS(4800), + [sym_comment] = ACTIONS(121), }, [1107] = { - [sym__expression] = STATE(1208), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(4219), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4807), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_QMARK] = ACTIONS(4822), + [anon_sym_STAR_EQ] = ACTIONS(4825), + [anon_sym_SLASH_EQ] = ACTIONS(4825), + [anon_sym_PERCENT_EQ] = ACTIONS(4825), + [anon_sym_PLUS_EQ] = ACTIONS(4825), + [anon_sym_DASH_EQ] = ACTIONS(4825), + [anon_sym_LT_LT_EQ] = ACTIONS(4825), + [anon_sym_GT_GT_EQ] = ACTIONS(4825), + [anon_sym_AMP_EQ] = ACTIONS(4825), + [anon_sym_CARET_EQ] = ACTIONS(4825), + [anon_sym_PIPE_EQ] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_CARET] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4843), + [anon_sym_GT_GT] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4852), [sym_comment] = ACTIONS(121), }, [1108] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym__abstract_declarator] = STATE(360), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [sym__expression] = STATE(1247), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4224), + [sym__expression] = STATE(1251), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1109] = { - [sym__expression] = STATE(1247), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4855), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1110] = { - [sym__expression] = STATE(1248), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1252), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1111] = { - [sym__expression] = STATE(1249), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1112] = { - [sym__expression] = STATE(1250), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4859), [sym_comment] = ACTIONS(121), }, [1113] = { - [sym__expression] = STATE(1252), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1255), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1114] = { - [aux_sym_preproc_params_repeat1] = STATE(527), - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(4236), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_declaration] = STATE(1035), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(1256), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [1115] = { - [sym__declarator] = STATE(1254), - [sym__abstract_declarator] = STATE(501), - [sym_pointer_declarator] = STATE(44), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_abstract_array_declarator] = STATE(186), - [sym_init_declarator] = STATE(141), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1230), - [anon_sym_RPAREN] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(4251), - [anon_sym_LBRACK] = ACTIONS(524), - [sym_identifier] = ACTIONS(415), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(4861), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1116] = { - [anon_sym_extern] = ACTIONS(271), - [anon_sym_typedef] = ACTIONS(271), - [anon_sym_static] = ACTIONS(271), - [anon_sym_auto] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_const] = ACTIONS(4253), - [anon_sym_restrict] = ACTIONS(4253), - [anon_sym_volatile] = ACTIONS(4253), - [sym_function_specifier] = ACTIONS(271), - [anon_sym_unsigned] = ACTIONS(4253), - [anon_sym_long] = ACTIONS(4253), - [anon_sym_short] = ACTIONS(4253), - [anon_sym_enum] = ACTIONS(4253), - [anon_sym_struct] = ACTIONS(4253), - [anon_sym_union] = ACTIONS(4253), - [sym_identifier] = ACTIONS(4256), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4866), + [anon_sym_RPAREN] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4866), + [anon_sym_RBRACE] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4866), + [anon_sym_QMARK] = ACTIONS(4877), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_PERCENT_EQ] = ACTIONS(4880), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_LT_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_GT_EQ] = ACTIONS(4880), + [anon_sym_AMP_EQ] = ACTIONS(4880), + [anon_sym_CARET_EQ] = ACTIONS(4880), + [anon_sym_PIPE_EQ] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_CARET] = ACTIONS(4883), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_LT_EQ] = ACTIONS(4895), + [anon_sym_GT_EQ] = ACTIONS(4895), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4907), + [anon_sym_DASH_GT] = ACTIONS(4907), [sym_comment] = ACTIONS(121), }, [1117] = { - [sym__abstract_declarator] = STATE(185), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_abstract_function_declarator] = STATE(186), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym_parameter_list] = STATE(187), - [aux_sym__declaration_specifiers_repeat1] = STATE(146), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_COMMA] = ACTIONS(423), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(4265), - [anon_sym_LBRACK] = ACTIONS(4268), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [sym_identifier] = ACTIONS(427), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4921), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4929), + [anon_sym_STAR_EQ] = ACTIONS(4933), + [anon_sym_SLASH_EQ] = ACTIONS(4933), + [anon_sym_PERCENT_EQ] = ACTIONS(4933), + [anon_sym_PLUS_EQ] = ACTIONS(4933), + [anon_sym_DASH_EQ] = ACTIONS(4933), + [anon_sym_LT_LT_EQ] = ACTIONS(4933), + [anon_sym_GT_GT_EQ] = ACTIONS(4933), + [anon_sym_AMP_EQ] = ACTIONS(4933), + [anon_sym_CARET_EQ] = ACTIONS(4933), + [anon_sym_PIPE_EQ] = ACTIONS(4933), + [anon_sym_AMP] = ACTIONS(4937), + [anon_sym_PIPE_PIPE] = ACTIONS(4941), + [anon_sym_AMP_AMP] = ACTIONS(4941), + [anon_sym_PIPE] = ACTIONS(4937), + [anon_sym_CARET] = ACTIONS(4937), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_LT_EQ] = ACTIONS(4953), + [anon_sym_GT_EQ] = ACTIONS(4953), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4961), + [anon_sym_DASH] = ACTIONS(4961), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DOT] = ACTIONS(4969), + [anon_sym_DASH_GT] = ACTIONS(4969), [sym_comment] = ACTIONS(121), }, [1118] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(521), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4281), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_LT_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_GT_EQ] = ACTIONS(4283), - [anon_sym_AMP_EQ] = ACTIONS(4283), - [anon_sym_CARET_EQ] = ACTIONS(4283), - [anon_sym_PIPE_EQ] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_CARET] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4295), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4277), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_STAR_EQ] = ACTIONS(4988), + [anon_sym_SLASH_EQ] = ACTIONS(4988), + [anon_sym_PERCENT_EQ] = ACTIONS(4988), + [anon_sym_PLUS_EQ] = ACTIONS(4988), + [anon_sym_DASH_EQ] = ACTIONS(4988), + [anon_sym_LT_LT_EQ] = ACTIONS(4988), + [anon_sym_GT_GT_EQ] = ACTIONS(4988), + [anon_sym_AMP_EQ] = ACTIONS(4988), + [anon_sym_CARET_EQ] = ACTIONS(4988), + [anon_sym_PIPE_EQ] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5015), [sym_comment] = ACTIONS(121), }, [1119] = { - [sym__declaration_specifiers] = STATE(322), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_declaration] = STATE(627), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [sym_identifier] = ACTIONS(4299), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5033), + [anon_sym_SLASH_EQ] = ACTIONS(5033), + [anon_sym_PERCENT_EQ] = ACTIONS(5033), + [anon_sym_PLUS_EQ] = ACTIONS(5033), + [anon_sym_DASH_EQ] = ACTIONS(5033), + [anon_sym_LT_LT_EQ] = ACTIONS(5033), + [anon_sym_GT_GT_EQ] = ACTIONS(5033), + [anon_sym_AMP_EQ] = ACTIONS(5033), + [anon_sym_CARET_EQ] = ACTIONS(5033), + [anon_sym_PIPE_EQ] = ACTIONS(5033), + [anon_sym_AMP] = ACTIONS(5036), + [anon_sym_PIPE_PIPE] = ACTIONS(5039), + [anon_sym_AMP_AMP] = ACTIONS(5039), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5042), + [anon_sym_BANG_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_PERCENT] = ACTIONS(5021), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), [sym_comment] = ACTIONS(121), }, [1120] = { - [anon_sym_LF] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [sym_preproc_arg] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(4301), - [sym_comment] = ACTIONS(225), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_COLON] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(5075), + [anon_sym_STAR_EQ] = ACTIONS(5078), + [anon_sym_SLASH_EQ] = ACTIONS(5078), + [anon_sym_PERCENT_EQ] = ACTIONS(5078), + [anon_sym_PLUS_EQ] = ACTIONS(5078), + [anon_sym_DASH_EQ] = ACTIONS(5078), + [anon_sym_LT_LT_EQ] = ACTIONS(5078), + [anon_sym_GT_GT_EQ] = ACTIONS(5078), + [anon_sym_AMP_EQ] = ACTIONS(5078), + [anon_sym_CARET_EQ] = ACTIONS(5078), + [anon_sym_PIPE_EQ] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5081), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_CARET] = ACTIONS(5081), + [anon_sym_EQ_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5066), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), + [sym_comment] = ACTIONS(121), }, [1121] = { - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1271), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_STAR] = ACTIONS(4305), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4307), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(1277), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(5120), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_LT_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_GT_EQ] = ACTIONS(5123), + [anon_sym_AMP_EQ] = ACTIONS(5123), + [anon_sym_CARET_EQ] = ACTIONS(5123), + [anon_sym_PIPE_EQ] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5126), + [anon_sym_EQ_EQ] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5132), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5141), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_SLASH] = ACTIONS(5111), + [anon_sym_PERCENT] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_DASH_GT] = ACTIONS(5150), [sym_comment] = ACTIONS(121), }, [1122] = { - [anon_sym_COMMA] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(4309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(5165), + [anon_sym_STAR_EQ] = ACTIONS(5168), + [anon_sym_SLASH_EQ] = ACTIONS(5168), + [anon_sym_PERCENT_EQ] = ACTIONS(5168), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_GT_EQ] = ACTIONS(5168), + [anon_sym_AMP_EQ] = ACTIONS(5168), + [anon_sym_CARET_EQ] = ACTIONS(5168), + [anon_sym_PIPE_EQ] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5174), + [anon_sym_AMP_AMP] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_PERCENT] = ACTIONS(5156), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), [sym_comment] = ACTIONS(121), }, [1123] = { - [anon_sym_LPAREN] = ACTIONS(4314), - [anon_sym_COMMA] = ACTIONS(4314), - [anon_sym_RPAREN] = ACTIONS(4314), - [anon_sym_SEMI] = ACTIONS(4314), - [anon_sym_extern] = ACTIONS(4319), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4314), - [anon_sym_RBRACK] = ACTIONS(4314), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_typedef] = ACTIONS(4319), - [anon_sym_static] = ACTIONS(4319), - [anon_sym_auto] = ACTIONS(4319), - [anon_sym_register] = ACTIONS(4319), - [anon_sym_const] = ACTIONS(4319), - [anon_sym_restrict] = ACTIONS(4319), - [anon_sym_volatile] = ACTIONS(4319), - [sym_function_specifier] = ACTIONS(4319), - [anon_sym_COLON] = ACTIONS(4314), - [anon_sym_QMARK] = ACTIONS(1985), - [anon_sym_STAR_EQ] = ACTIONS(1985), - [anon_sym_SLASH_EQ] = ACTIONS(1985), - [anon_sym_PERCENT_EQ] = ACTIONS(1985), - [anon_sym_PLUS_EQ] = ACTIONS(1985), - [anon_sym_DASH_EQ] = ACTIONS(1985), - [anon_sym_LT_LT_EQ] = ACTIONS(1985), - [anon_sym_GT_GT_EQ] = ACTIONS(1985), - [anon_sym_AMP_EQ] = ACTIONS(1985), - [anon_sym_CARET_EQ] = ACTIONS(1985), - [anon_sym_PIPE_EQ] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(4319), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_TILDE] = ACTIONS(4328), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1985), - [anon_sym_GT_EQ] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(4323), - [anon_sym_DASH] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(4314), - [anon_sym_PLUS_PLUS] = ACTIONS(4314), - [anon_sym_sizeof] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(1985), - [anon_sym_DASH_GT] = ACTIONS(1985), - [sym_number_literal] = ACTIONS(4319), - [sym_char_literal] = ACTIONS(4319), - [sym_string_literal] = ACTIONS(4328), - [sym_identifier] = ACTIONS(4332), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5213), + [anon_sym_SLASH_EQ] = ACTIONS(5213), + [anon_sym_PERCENT_EQ] = ACTIONS(5213), + [anon_sym_PLUS_EQ] = ACTIONS(5213), + [anon_sym_DASH_EQ] = ACTIONS(5213), + [anon_sym_LT_LT_EQ] = ACTIONS(5213), + [anon_sym_GT_GT_EQ] = ACTIONS(5213), + [anon_sym_AMP_EQ] = ACTIONS(5213), + [anon_sym_CARET_EQ] = ACTIONS(5213), + [anon_sym_PIPE_EQ] = ACTIONS(5213), + [anon_sym_AMP] = ACTIONS(5216), + [anon_sym_PIPE_PIPE] = ACTIONS(5219), + [anon_sym_AMP_AMP] = ACTIONS(5219), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5216), + [anon_sym_EQ_EQ] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5225), + [anon_sym_LT_EQ] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5231), + [anon_sym_GT_GT] = ACTIONS(5231), + [anon_sym_PLUS] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5234), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5201), + [anon_sym_DASH_DASH] = ACTIONS(5237), + [anon_sym_PLUS_PLUS] = ACTIONS(5237), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_DASH_GT] = ACTIONS(5240), [sym_comment] = ACTIONS(121), }, [1124] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym__expression] = STATE(1273), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_STAR] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4336), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5249), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(5252), + [anon_sym_COLON] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_PERCENT_EQ] = ACTIONS(5258), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_CARET_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5261), + [anon_sym_PIPE_PIPE] = ACTIONS(5264), + [anon_sym_AMP_AMP] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym_EQ_EQ] = ACTIONS(5267), + [anon_sym_BANG_EQ] = ACTIONS(5267), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5270), + [anon_sym_LT_EQ] = ACTIONS(5273), + [anon_sym_GT_EQ] = ACTIONS(5273), + [anon_sym_LT_LT] = ACTIONS(5276), + [anon_sym_GT_GT] = ACTIONS(5276), + [anon_sym_PLUS] = ACTIONS(5279), + [anon_sym_DASH] = ACTIONS(5279), + [anon_sym_SLASH] = ACTIONS(5246), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5282), + [anon_sym_PLUS_PLUS] = ACTIONS(5282), + [anon_sym_DOT] = ACTIONS(5285), + [anon_sym_DASH_GT] = ACTIONS(5285), [sym_comment] = ACTIONS(121), }, [1125] = { - [sym__expression] = STATE(1273), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5288), + [anon_sym_COMMA] = ACTIONS(5292), + [anon_sym_RPAREN] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_RBRACE] = ACTIONS(5292), + [anon_sym_STAR] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5292), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_QMARK] = ACTIONS(5307), + [anon_sym_STAR_EQ] = ACTIONS(5311), + [anon_sym_SLASH_EQ] = ACTIONS(5311), + [anon_sym_PERCENT_EQ] = ACTIONS(5311), + [anon_sym_PLUS_EQ] = ACTIONS(5311), + [anon_sym_DASH_EQ] = ACTIONS(5311), + [anon_sym_LT_LT_EQ] = ACTIONS(5311), + [anon_sym_GT_GT_EQ] = ACTIONS(5311), + [anon_sym_AMP_EQ] = ACTIONS(5311), + [anon_sym_CARET_EQ] = ACTIONS(5311), + [anon_sym_PIPE_EQ] = ACTIONS(5311), + [anon_sym_AMP] = ACTIONS(5315), + [anon_sym_PIPE_PIPE] = ACTIONS(5319), + [anon_sym_AMP_AMP] = ACTIONS(5319), + [anon_sym_PIPE] = ACTIONS(5315), + [anon_sym_CARET] = ACTIONS(5315), + [anon_sym_EQ_EQ] = ACTIONS(5323), + [anon_sym_BANG_EQ] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5327), + [anon_sym_GT] = ACTIONS(5327), + [anon_sym_LT_EQ] = ACTIONS(5331), + [anon_sym_GT_EQ] = ACTIONS(5331), + [anon_sym_LT_LT] = ACTIONS(5335), + [anon_sym_GT_GT] = ACTIONS(5335), + [anon_sym_PLUS] = ACTIONS(5339), + [anon_sym_DASH] = ACTIONS(5339), + [anon_sym_SLASH] = ACTIONS(5295), + [anon_sym_PERCENT] = ACTIONS(5295), + [anon_sym_DASH_DASH] = ACTIONS(5343), + [anon_sym_PLUS_PLUS] = ACTIONS(5343), + [anon_sym_DOT] = ACTIONS(5347), + [anon_sym_DASH_GT] = ACTIONS(5347), [sym_comment] = ACTIONS(121), }, [1126] = { - [sym__expression] = STATE(1275), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5354), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5359), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5365), + [anon_sym_STAR_EQ] = ACTIONS(5368), + [anon_sym_SLASH_EQ] = ACTIONS(5368), + [anon_sym_PERCENT_EQ] = ACTIONS(5368), + [anon_sym_PLUS_EQ] = ACTIONS(5368), + [anon_sym_DASH_EQ] = ACTIONS(5368), + [anon_sym_LT_LT_EQ] = ACTIONS(5368), + [anon_sym_GT_GT_EQ] = ACTIONS(5368), + [anon_sym_AMP_EQ] = ACTIONS(5368), + [anon_sym_CARET_EQ] = ACTIONS(5368), + [anon_sym_PIPE_EQ] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5371), + [anon_sym_PIPE_PIPE] = ACTIONS(5374), + [anon_sym_AMP_AMP] = ACTIONS(5374), + [anon_sym_PIPE] = ACTIONS(5371), + [anon_sym_CARET] = ACTIONS(5371), + [anon_sym_EQ_EQ] = ACTIONS(5377), + [anon_sym_BANG_EQ] = ACTIONS(5377), + [anon_sym_LT] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(5380), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5383), + [anon_sym_LT_LT] = ACTIONS(5386), + [anon_sym_GT_GT] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5389), + [anon_sym_DASH] = ACTIONS(5389), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_PERCENT] = ACTIONS(5356), + [anon_sym_DASH_DASH] = ACTIONS(5392), + [anon_sym_PLUS_PLUS] = ACTIONS(5392), + [anon_sym_DOT] = ACTIONS(5395), + [anon_sym_DASH_GT] = ACTIONS(5395), [sym_comment] = ACTIONS(121), }, [1127] = { - [sym__expression] = STATE(1276), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5398), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_RBRACK] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(5407), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(5410), + [anon_sym_STAR_EQ] = ACTIONS(5413), + [anon_sym_SLASH_EQ] = ACTIONS(5413), + [anon_sym_PERCENT_EQ] = ACTIONS(5413), + [anon_sym_PLUS_EQ] = ACTIONS(5413), + [anon_sym_DASH_EQ] = ACTIONS(5413), + [anon_sym_LT_LT_EQ] = ACTIONS(5413), + [anon_sym_GT_GT_EQ] = ACTIONS(5413), + [anon_sym_AMP_EQ] = ACTIONS(5413), + [anon_sym_CARET_EQ] = ACTIONS(5413), + [anon_sym_PIPE_EQ] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5416), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5416), + [anon_sym_CARET] = ACTIONS(5416), + [anon_sym_EQ_EQ] = ACTIONS(5422), + [anon_sym_BANG_EQ] = ACTIONS(5422), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_LT_EQ] = ACTIONS(5428), + [anon_sym_GT_EQ] = ACTIONS(5428), + [anon_sym_LT_LT] = ACTIONS(5431), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_PLUS] = ACTIONS(5434), + [anon_sym_DASH] = ACTIONS(5434), + [anon_sym_SLASH] = ACTIONS(5401), + [anon_sym_PERCENT] = ACTIONS(5401), + [anon_sym_DASH_DASH] = ACTIONS(5437), + [anon_sym_PLUS_PLUS] = ACTIONS(5437), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DASH_GT] = ACTIONS(5440), [sym_comment] = ACTIONS(121), }, [1128] = { - [sym__expression] = STATE(1277), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1258), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [1129] = { - [sym__expression] = STATE(1279), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5443), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(5446), + [anon_sym_LBRACK] = ACTIONS(5449), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(5452), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(5455), + [anon_sym_STAR_EQ] = ACTIONS(5458), + [anon_sym_SLASH_EQ] = ACTIONS(5458), + [anon_sym_PERCENT_EQ] = ACTIONS(5458), + [anon_sym_PLUS_EQ] = ACTIONS(5458), + [anon_sym_DASH_EQ] = ACTIONS(5458), + [anon_sym_LT_LT_EQ] = ACTIONS(5458), + [anon_sym_GT_GT_EQ] = ACTIONS(5458), + [anon_sym_AMP_EQ] = ACTIONS(5458), + [anon_sym_CARET_EQ] = ACTIONS(5458), + [anon_sym_PIPE_EQ] = ACTIONS(5458), + [anon_sym_AMP] = ACTIONS(5461), + [anon_sym_PIPE_PIPE] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_PIPE] = ACTIONS(5461), + [anon_sym_CARET] = ACTIONS(5461), + [anon_sym_EQ_EQ] = ACTIONS(5467), + [anon_sym_BANG_EQ] = ACTIONS(5467), + [anon_sym_LT] = ACTIONS(5470), + [anon_sym_GT] = ACTIONS(5470), + [anon_sym_LT_EQ] = ACTIONS(5473), + [anon_sym_GT_EQ] = ACTIONS(5473), + [anon_sym_LT_LT] = ACTIONS(5476), + [anon_sym_GT_GT] = ACTIONS(5476), + [anon_sym_PLUS] = ACTIONS(5479), + [anon_sym_DASH] = ACTIONS(5479), + [anon_sym_SLASH] = ACTIONS(5446), + [anon_sym_PERCENT] = ACTIONS(5446), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5485), + [anon_sym_DASH_GT] = ACTIONS(5485), [sym_comment] = ACTIONS(121), }, [1130] = { - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4350), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_EQ] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(5491), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_STAR_EQ] = ACTIONS(1596), + [anon_sym_SLASH_EQ] = ACTIONS(1596), + [anon_sym_PERCENT_EQ] = ACTIONS(1596), + [anon_sym_PLUS_EQ] = ACTIONS(1596), + [anon_sym_DASH_EQ] = ACTIONS(1596), + [anon_sym_LT_LT_EQ] = ACTIONS(1596), + [anon_sym_GT_GT_EQ] = ACTIONS(1596), + [anon_sym_AMP_EQ] = ACTIONS(1596), + [anon_sym_CARET_EQ] = ACTIONS(1596), + [anon_sym_PIPE_EQ] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1598), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_DASH_GT] = ACTIONS(1596), [sym_comment] = ACTIONS(121), }, [1131] = { - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(4366), - [anon_sym_SEMI] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(834), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1260), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(5494), [sym_comment] = ACTIONS(121), }, [1132] = { - [sym_parameter_list] = STATE(425), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(4369), - [anon_sym_SEMI] = ACTIONS(4369), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(4369), + [ts_builtin_sym_end] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(1466), + [sym__pound_include] = ACTIONS(5496), + [sym__pound_define] = ACTIONS(5496), + [sym__pound_if] = ACTIONS(5496), + [sym__pound_ifdef] = ACTIONS(5496), + [sym__pound_endif] = ACTIONS(5496), + [sym__pound_else] = ACTIONS(5496), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(5496), + [anon_sym_static] = ACTIONS(5496), + [anon_sym_auto] = ACTIONS(5496), + [anon_sym_register] = ACTIONS(5496), + [anon_sym_const] = ACTIONS(5496), + [anon_sym_restrict] = ACTIONS(5496), + [anon_sym_volatile] = ACTIONS(5496), + [sym_function_specifier] = ACTIONS(5496), + [anon_sym_unsigned] = ACTIONS(5496), + [anon_sym_long] = ACTIONS(5496), + [anon_sym_short] = ACTIONS(5496), + [anon_sym_enum] = ACTIONS(5496), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_union] = ACTIONS(5496), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [sym_string_literal] = ACTIONS(1466), + [sym_identifier] = ACTIONS(5499), [sym_comment] = ACTIONS(121), }, [1133] = { - [anon_sym_COMMA] = ACTIONS(4366), - [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym_LPAREN] = ACTIONS(5505), + [sym__pound_include] = ACTIONS(5508), + [sym__pound_define] = ACTIONS(5508), + [sym__pound_if] = ACTIONS(5508), + [sym__pound_ifdef] = ACTIONS(5508), + [sym__pound_endif] = ACTIONS(5508), + [sym__pound_else] = ACTIONS(5508), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_SEMI] = ACTIONS(5505), + [anon_sym_extern] = ACTIONS(5508), + [anon_sym_LBRACE] = ACTIONS(5505), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_typedef] = ACTIONS(5508), + [anon_sym_static] = ACTIONS(5508), + [anon_sym_auto] = ACTIONS(5508), + [anon_sym_register] = ACTIONS(5508), + [anon_sym_const] = ACTIONS(5508), + [anon_sym_restrict] = ACTIONS(5508), + [anon_sym_volatile] = ACTIONS(5508), + [sym_function_specifier] = ACTIONS(5508), + [anon_sym_unsigned] = ACTIONS(5508), + [anon_sym_long] = ACTIONS(5508), + [anon_sym_short] = ACTIONS(5508), + [anon_sym_enum] = ACTIONS(5508), + [anon_sym_struct] = ACTIONS(5508), + [anon_sym_union] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(5508), + [anon_sym_case] = ACTIONS(5508), + [anon_sym_default] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_do] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_break] = ACTIONS(5508), + [anon_sym_continue] = ACTIONS(5508), + [anon_sym_goto] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5505), + [anon_sym_BANG] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_PLUS] = ACTIONS(5508), + [anon_sym_DASH] = ACTIONS(5508), + [anon_sym_DASH_DASH] = ACTIONS(5505), + [anon_sym_PLUS_PLUS] = ACTIONS(5505), + [anon_sym_sizeof] = ACTIONS(5508), + [sym_number_literal] = ACTIONS(5508), + [sym_char_literal] = ACTIONS(5508), + [sym_string_literal] = ACTIONS(5505), + [sym_identifier] = ACTIONS(5511), [sym_comment] = ACTIONS(121), }, [1134] = { - [anon_sym_COMMA] = ACTIONS(4372), - [anon_sym_RBRACE] = ACTIONS(4372), + [sym_preproc_include] = STATE(162), + [sym_preproc_def] = STATE(162), + [sym_preproc_function_def] = STATE(162), + [sym_preproc_call] = STATE(162), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_declaration] = STATE(162), + [sym__declaration_specifiers] = STATE(1263), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_field_declaration] = STATE(73), + [sym_enumerator] = STATE(69), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(162), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(168), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_field_declaration_list_repeat1] = STATE(74), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_COMMA] = ACTIONS(279), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(515), + [sym__pound_ifdef] = ACTIONS(517), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(525), + [anon_sym_switch] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(537), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(5516), [sym_comment] = ACTIONS(121), }, [1135] = { - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RPAREN] = ACTIONS(4375), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1136] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(4378), - [anon_sym_RPAREN] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_STAR_EQ] = ACTIONS(4393), - [anon_sym_SLASH_EQ] = ACTIONS(4393), - [anon_sym_PERCENT_EQ] = ACTIONS(4393), - [anon_sym_PLUS_EQ] = ACTIONS(4393), - [anon_sym_DASH_EQ] = ACTIONS(4393), - [anon_sym_LT_LT_EQ] = ACTIONS(4393), - [anon_sym_GT_GT_EQ] = ACTIONS(4393), - [anon_sym_AMP_EQ] = ACTIONS(4393), - [anon_sym_CARET_EQ] = ACTIONS(4393), - [anon_sym_PIPE_EQ] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4397), - [anon_sym_AMP_AMP] = ACTIONS(4397), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4399), - [anon_sym_BANG_EQ] = ACTIONS(4399), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_GT] = ACTIONS(4401), - [anon_sym_LT_EQ] = ACTIONS(4403), - [anon_sym_GT_EQ] = ACTIONS(4403), - [anon_sym_LT_LT] = ACTIONS(4405), - [anon_sym_GT_GT] = ACTIONS(4405), - [anon_sym_PLUS] = ACTIONS(4387), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_SLASH] = ACTIONS(4387), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(5518), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(5518), + [anon_sym_extern] = ACTIONS(5521), + [anon_sym_STAR] = ACTIONS(5518), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_RBRACK] = ACTIONS(5518), + [anon_sym_typedef] = ACTIONS(5521), + [anon_sym_static] = ACTIONS(5521), + [anon_sym_auto] = ACTIONS(5521), + [anon_sym_register] = ACTIONS(5521), + [anon_sym_const] = ACTIONS(5521), + [anon_sym_restrict] = ACTIONS(5521), + [anon_sym_volatile] = ACTIONS(5521), + [sym_function_specifier] = ACTIONS(5521), + [anon_sym_COLON] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5518), + [anon_sym_BANG] = ACTIONS(5518), + [anon_sym_TILDE] = ACTIONS(5518), + [anon_sym_PLUS] = ACTIONS(5521), + [anon_sym_DASH] = ACTIONS(5521), + [anon_sym_DASH_DASH] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5518), + [anon_sym_sizeof] = ACTIONS(5521), + [sym_number_literal] = ACTIONS(5521), + [sym_char_literal] = ACTIONS(5521), + [sym_string_literal] = ACTIONS(5518), + [sym_identifier] = ACTIONS(5524), [sym_comment] = ACTIONS(121), }, [1137] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1289), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [ts_builtin_sym_end] = ACTIONS(5527), + [sym__pound_include] = ACTIONS(5532), + [sym__pound_define] = ACTIONS(5532), + [sym__pound_if] = ACTIONS(5532), + [sym__pound_ifdef] = ACTIONS(5532), + [sym__pound_endif] = ACTIONS(5532), + [sym__pound_else] = ACTIONS(5532), + [sym_preproc_directive] = ACTIONS(5537), + [anon_sym_extern] = ACTIONS(5532), + [anon_sym_RBRACE] = ACTIONS(5527), + [anon_sym_typedef] = ACTIONS(5532), + [anon_sym_static] = ACTIONS(5532), + [anon_sym_auto] = ACTIONS(5532), + [anon_sym_register] = ACTIONS(5532), + [anon_sym_const] = ACTIONS(5532), + [anon_sym_restrict] = ACTIONS(5532), + [anon_sym_volatile] = ACTIONS(5532), + [sym_function_specifier] = ACTIONS(5532), + [anon_sym_unsigned] = ACTIONS(5532), + [anon_sym_long] = ACTIONS(5532), + [anon_sym_short] = ACTIONS(5532), + [anon_sym_enum] = ACTIONS(5532), + [anon_sym_struct] = ACTIONS(5532), + [anon_sym_union] = ACTIONS(5532), + [sym_identifier] = ACTIONS(5537), [sym_comment] = ACTIONS(121), }, [1138] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(1161), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(545), - [sym__initializer_list_contents] = STATE(546), - [sym_designator] = STATE(547), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym__initializer_list_contents_repeat1] = STATE(548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(4407), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(5542), + [sym__pound_include] = ACTIONS(5547), + [sym__pound_define] = ACTIONS(5547), + [sym__pound_if] = ACTIONS(5547), + [sym__pound_ifdef] = ACTIONS(5547), + [sym__pound_endif] = ACTIONS(5547), + [sym__pound_else] = ACTIONS(5547), + [sym_preproc_directive] = ACTIONS(5552), + [anon_sym_SEMI] = ACTIONS(5542), + [anon_sym_extern] = ACTIONS(5547), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(5542), + [anon_sym_typedef] = ACTIONS(5547), + [anon_sym_static] = ACTIONS(5547), + [anon_sym_auto] = ACTIONS(5547), + [anon_sym_register] = ACTIONS(5547), + [anon_sym_const] = ACTIONS(5547), + [anon_sym_restrict] = ACTIONS(5547), + [anon_sym_volatile] = ACTIONS(5547), + [sym_function_specifier] = ACTIONS(5547), + [anon_sym_unsigned] = ACTIONS(5547), + [anon_sym_long] = ACTIONS(5547), + [anon_sym_short] = ACTIONS(5547), + [anon_sym_enum] = ACTIONS(5547), + [anon_sym_struct] = ACTIONS(5547), + [anon_sym_union] = ACTIONS(5547), + [anon_sym_if] = ACTIONS(5547), + [anon_sym_switch] = ACTIONS(5547), + [anon_sym_case] = ACTIONS(5547), + [anon_sym_default] = ACTIONS(5547), + [anon_sym_while] = ACTIONS(5547), + [anon_sym_do] = ACTIONS(5547), + [anon_sym_for] = ACTIONS(5547), + [anon_sym_return] = ACTIONS(5547), + [anon_sym_break] = ACTIONS(5547), + [anon_sym_continue] = ACTIONS(5547), + [anon_sym_goto] = ACTIONS(5547), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_BANG] = ACTIONS(5542), + [anon_sym_TILDE] = ACTIONS(5542), + [anon_sym_PLUS] = ACTIONS(5547), + [anon_sym_DASH] = ACTIONS(5547), + [anon_sym_DASH_DASH] = ACTIONS(5542), + [anon_sym_PLUS_PLUS] = ACTIONS(5542), + [anon_sym_sizeof] = ACTIONS(5547), + [sym_number_literal] = ACTIONS(5547), + [sym_char_literal] = ACTIONS(5547), + [sym_string_literal] = ACTIONS(5542), + [sym_identifier] = ACTIONS(5552), [sym_comment] = ACTIONS(121), }, [1139] = { - [sym__expression] = STATE(1293), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1265), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(5557), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1140] = { - [anon_sym_LPAREN] = ACTIONS(4413), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(5559), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1141] = { - [sym__expression] = STATE(1197), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declaration_specifiers] = STATE(134), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym__abstract_declarator] = STATE(219), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(1044), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_list] = STATE(127), + [sym_parameter_declaration] = STATE(132), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(304), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4236), [sym_comment] = ACTIONS(121), }, [1142] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(4415), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [ts_builtin_sym_end] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(325), + [sym__pound_include] = ACTIONS(327), + [sym__pound_define] = ACTIONS(327), + [sym__pound_if] = ACTIONS(327), + [sym__pound_ifdef] = ACTIONS(327), + [sym__pound_endif] = ACTIONS(327), + [sym__pound_else] = ACTIONS(327), + [sym_preproc_directive] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(5561), + [anon_sym_LBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_typedef] = ACTIONS(5561), + [anon_sym_static] = ACTIONS(5561), + [anon_sym_auto] = ACTIONS(5561), + [anon_sym_register] = ACTIONS(5561), + [anon_sym_const] = ACTIONS(5561), + [anon_sym_restrict] = ACTIONS(5561), + [anon_sym_volatile] = ACTIONS(5561), + [sym_function_specifier] = ACTIONS(5561), + [anon_sym_unsigned] = ACTIONS(5561), + [anon_sym_long] = ACTIONS(5561), + [anon_sym_short] = ACTIONS(5561), + [anon_sym_enum] = ACTIONS(5561), + [anon_sym_struct] = ACTIONS(5561), + [anon_sym_union] = ACTIONS(5561), + [anon_sym_if] = ACTIONS(327), + [anon_sym_switch] = ACTIONS(327), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(327), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(327), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(327), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_goto] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_TILDE] = ACTIONS(325), + [anon_sym_PLUS] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(325), + [anon_sym_sizeof] = ACTIONS(327), + [sym_number_literal] = ACTIONS(327), + [sym_char_literal] = ACTIONS(327), + [sym_string_literal] = ACTIONS(325), + [sym_identifier] = ACTIONS(5567), [sym_comment] = ACTIONS(121), }, [1143] = { - [ts_builtin_sym_end] = ACTIONS(4418), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(4427), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(4427), - [anon_sym_LPAREN] = ACTIONS(4418), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(4427), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(4427), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(4427), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(4427), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(4427), - [sym_preproc_directive] = ACTIONS(4436), - [anon_sym_SEMI] = ACTIONS(4418), - [anon_sym_extern] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4418), - [anon_sym_RBRACE] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4418), - [anon_sym_typedef] = ACTIONS(4427), - [anon_sym_static] = ACTIONS(4427), - [anon_sym_auto] = ACTIONS(4427), - [anon_sym_register] = ACTIONS(4427), - [anon_sym_const] = ACTIONS(4427), - [anon_sym_restrict] = ACTIONS(4427), - [anon_sym_volatile] = ACTIONS(4427), - [sym_function_specifier] = ACTIONS(4427), - [anon_sym_unsigned] = ACTIONS(4427), - [anon_sym_long] = ACTIONS(4427), - [anon_sym_short] = ACTIONS(4427), - [anon_sym_enum] = ACTIONS(4427), - [anon_sym_struct] = ACTIONS(4427), - [anon_sym_union] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4445), - [anon_sym_switch] = ACTIONS(4427), - [anon_sym_case] = ACTIONS(4427), - [anon_sym_default] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_do] = ACTIONS(4427), - [anon_sym_for] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_goto] = ACTIONS(4427), - [anon_sym_AMP] = ACTIONS(4418), - [anon_sym_BANG] = ACTIONS(4418), - [anon_sym_TILDE] = ACTIONS(4418), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_DASH_DASH] = ACTIONS(4418), - [anon_sym_PLUS_PLUS] = ACTIONS(4418), - [anon_sym_sizeof] = ACTIONS(4427), - [sym_number_literal] = ACTIONS(4427), - [sym_char_literal] = ACTIONS(4427), - [sym_string_literal] = ACTIONS(4418), - [sym_identifier] = ACTIONS(4436), + [sym__declarator] = STATE(1096), + [sym__field_declarator] = STATE(205), + [sym__abstract_declarator] = STATE(220), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(5570), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_sizeof] = ACTIONS(577), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(3470), [sym_comment] = ACTIONS(121), }, [1144] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(4458), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(4461), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(4470), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_LT_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_GT_EQ] = ACTIONS(4476), - [anon_sym_AMP_EQ] = ACTIONS(4476), - [anon_sym_CARET_EQ] = ACTIONS(4476), - [anon_sym_PIPE_EQ] = ACTIONS(4476), - [anon_sym_AMP] = ACTIONS(4479), - [anon_sym_PIPE_PIPE] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4482), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym_EQ_EQ] = ACTIONS(4485), - [anon_sym_BANG_EQ] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4488), - [anon_sym_GT] = ACTIONS(4488), - [anon_sym_LT_EQ] = ACTIONS(4491), - [anon_sym_GT_EQ] = ACTIONS(4491), - [anon_sym_LT_LT] = ACTIONS(4494), - [anon_sym_GT_GT] = ACTIONS(4494), - [anon_sym_PLUS] = ACTIONS(4497), - [anon_sym_DASH] = ACTIONS(4497), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DOT] = ACTIONS(4503), - [anon_sym_DASH_GT] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(5573), + [anon_sym_COMMA] = ACTIONS(5573), + [anon_sym_RPAREN] = ACTIONS(5573), + [anon_sym_SEMI] = ACTIONS(5578), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(5573), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_COLON] = ACTIONS(1628), [sym_comment] = ACTIONS(121), }, [1145] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1245), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(5581), + [anon_sym_RPAREN] = ACTIONS(331), + [anon_sym_SEMI] = ACTIONS(5581), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(4641), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1146] = { - [sym_compound_statement] = STATE(1295), - [sym_labeled_statement] = STATE(1295), - [sym_expression_statement] = STATE(1295), - [sym_if_statement] = STATE(1295), - [sym_switch_statement] = STATE(1295), - [sym_case_statement] = STATE(1295), - [sym_while_statement] = STATE(1295), - [sym_do_statement] = STATE(1295), - [sym_for_statement] = STATE(1295), - [sym_return_statement] = STATE(1295), - [sym_break_statement] = STATE(1295), - [sym_continue_statement] = STATE(1295), - [sym_goto_statement] = STATE(1295), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [sym_compound_statement] = STATE(91), + [sym_parameter_list] = STATE(92), + [aux_sym_declaration_repeat1] = STATE(93), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(5584), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(343), [sym_comment] = ACTIONS(121), }, [1147] = { - [sym__expression] = STATE(1297), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(4506), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(5587), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1148] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1300), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4281), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_LT_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_GT_EQ] = ACTIONS(4283), - [anon_sym_AMP_EQ] = ACTIONS(4283), - [anon_sym_CARET_EQ] = ACTIONS(4283), - [anon_sym_PIPE_EQ] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_CARET] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4295), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4277), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_parameter_list] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(725), [sym_comment] = ACTIONS(121), }, [1149] = { - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1301), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_STAR] = ACTIONS(4305), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4307), + [sym_storage_class_specifier] = STATE(48), + [sym_type_qualifier] = STATE(48), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), + [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4218), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_TILDE] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4218), + [anon_sym_sizeof] = ACTIONS(4221), + [sym_number_literal] = ACTIONS(4221), + [sym_char_literal] = ACTIONS(4221), + [sym_string_literal] = ACTIONS(4218), + [sym_identifier] = ACTIONS(5592), [sym_comment] = ACTIONS(121), }, [1150] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(4512), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(233), - [sym_preproc_directive] = ACTIONS(235), - [anon_sym_SEMI] = ACTIONS(4512), - [anon_sym_extern] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(4512), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_typedef] = ACTIONS(4515), - [anon_sym_static] = ACTIONS(4515), - [anon_sym_auto] = ACTIONS(4515), - [anon_sym_register] = ACTIONS(4515), - [anon_sym_const] = ACTIONS(4515), - [anon_sym_restrict] = ACTIONS(4515), - [anon_sym_volatile] = ACTIONS(4515), - [sym_function_specifier] = ACTIONS(4515), - [anon_sym_unsigned] = ACTIONS(4515), - [anon_sym_long] = ACTIONS(4515), - [anon_sym_short] = ACTIONS(4515), - [anon_sym_enum] = ACTIONS(4515), - [anon_sym_struct] = ACTIONS(4515), - [anon_sym_union] = ACTIONS(4515), - [anon_sym_COLON] = ACTIONS(1061), - [anon_sym_if] = ACTIONS(233), - [anon_sym_switch] = ACTIONS(233), - [anon_sym_case] = ACTIONS(233), - [anon_sym_default] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_do] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_return] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_goto] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(231), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(233), - [sym_char_literal] = ACTIONS(233), - [sym_string_literal] = ACTIONS(231), - [sym_identifier] = ACTIONS(4518), + [sym__expression] = STATE(1268), + [sym_comma_expression] = STATE(464), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1151] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(1161), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(545), - [sym__initializer_list_contents] = STATE(546), - [sym_designator] = STATE(547), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym__initializer_list_contents_repeat1] = STATE(548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(4407), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(4521), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(257), + [sym_compound_statement] = STATE(1269), + [sym_labeled_statement] = STATE(1269), + [sym_expression_statement] = STATE(1269), + [sym_if_statement] = STATE(1269), + [sym_switch_statement] = STATE(1269), + [sym_case_statement] = STATE(1269), + [sym_while_statement] = STATE(1269), + [sym_do_statement] = STATE(1269), + [sym_for_statement] = STATE(1269), + [sym_return_statement] = STATE(1269), + [sym_break_statement] = STATE(1269), + [sym_continue_statement] = STATE(1269), + [sym_goto_statement] = STATE(1269), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(5595), + [anon_sym_COMMA] = ACTIONS(5600), + [anon_sym_RPAREN] = ACTIONS(5600), + [sym__pound_include] = ACTIONS(1966), + [sym__pound_define] = ACTIONS(1966), + [sym__pound_if] = ACTIONS(1966), + [sym__pound_ifdef] = ACTIONS(1966), + [sym__pound_endif] = ACTIONS(1966), + [sym__pound_else] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_STAR] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_RBRACK] = ACTIONS(5600), + [anon_sym_EQ] = ACTIONS(5620), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_auto] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [sym_function_specifier] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(5626), + [anon_sym_case] = ACTIONS(5629), + [anon_sym_default] = ACTIONS(5632), + [anon_sym_while] = ACTIONS(5635), + [anon_sym_do] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5641), + [anon_sym_return] = ACTIONS(5644), + [anon_sym_break] = ACTIONS(5647), + [anon_sym_continue] = ACTIONS(5650), + [anon_sym_goto] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5600), + [anon_sym_STAR_EQ] = ACTIONS(5600), + [anon_sym_SLASH_EQ] = ACTIONS(5600), + [anon_sym_PERCENT_EQ] = ACTIONS(5600), + [anon_sym_PLUS_EQ] = ACTIONS(5600), + [anon_sym_DASH_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_EQ] = ACTIONS(5600), + [anon_sym_GT_GT_EQ] = ACTIONS(5600), + [anon_sym_AMP_EQ] = ACTIONS(5600), + [anon_sym_CARET_EQ] = ACTIONS(5600), + [anon_sym_PIPE_EQ] = ACTIONS(5600), + [anon_sym_AMP] = ACTIONS(5615), + [anon_sym_PIPE_PIPE] = ACTIONS(5600), + [anon_sym_AMP_AMP] = ACTIONS(5600), + [anon_sym_BANG] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5620), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_TILDE] = ACTIONS(5659), + [anon_sym_EQ_EQ] = ACTIONS(5600), + [anon_sym_BANG_EQ] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5620), + [anon_sym_LT_EQ] = ACTIONS(5600), + [anon_sym_GT_EQ] = ACTIONS(5600), + [anon_sym_LT_LT] = ACTIONS(5620), + [anon_sym_GT_GT] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_SLASH] = ACTIONS(5620), + [anon_sym_PERCENT] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5667), + [anon_sym_sizeof] = ACTIONS(5672), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_DASH_GT] = ACTIONS(5600), + [sym_number_literal] = ACTIONS(5675), + [sym_char_literal] = ACTIONS(5675), + [sym_string_literal] = ACTIONS(5678), + [sym_identifier] = ACTIONS(5681), [sym_comment] = ACTIONS(121), }, [1152] = { - [ts_builtin_sym_end] = ACTIONS(4523), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(4526), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4529), - [anon_sym_COMMA] = ACTIONS(4535), - [anon_sym_RPAREN] = ACTIONS(4535), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(4526), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(4526), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(4526), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(4526), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(4526), - [sym_preproc_directive] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4529), - [anon_sym_extern] = ACTIONS(4542), - [anon_sym_LBRACE] = ACTIONS(4523), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_STAR] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_RBRACK] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(1610), - [anon_sym_typedef] = ACTIONS(4542), - [anon_sym_static] = ACTIONS(4542), - [anon_sym_auto] = ACTIONS(4542), - [anon_sym_register] = ACTIONS(4542), - [anon_sym_const] = ACTIONS(4542), - [anon_sym_restrict] = ACTIONS(4542), - [anon_sym_volatile] = ACTIONS(4542), - [sym_function_specifier] = ACTIONS(4542), - [anon_sym_unsigned] = ACTIONS(4526), - [anon_sym_long] = ACTIONS(4526), - [anon_sym_short] = ACTIONS(4526), - [anon_sym_enum] = ACTIONS(4526), - [anon_sym_struct] = ACTIONS(4526), - [anon_sym_union] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_if] = ACTIONS(4526), - [anon_sym_else] = ACTIONS(596), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_case] = ACTIONS(4526), - [anon_sym_default] = ACTIONS(4526), - [anon_sym_while] = ACTIONS(4526), - [anon_sym_do] = ACTIONS(4526), - [anon_sym_for] = ACTIONS(4526), - [anon_sym_return] = ACTIONS(4526), - [anon_sym_break] = ACTIONS(4526), - [anon_sym_continue] = ACTIONS(4526), - [anon_sym_goto] = ACTIONS(4526), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_STAR_EQ] = ACTIONS(1608), - [anon_sym_SLASH_EQ] = ACTIONS(1608), - [anon_sym_PERCENT_EQ] = ACTIONS(1608), - [anon_sym_PLUS_EQ] = ACTIONS(1608), - [anon_sym_DASH_EQ] = ACTIONS(1608), - [anon_sym_LT_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_GT_EQ] = ACTIONS(1608), - [anon_sym_AMP_EQ] = ACTIONS(1608), - [anon_sym_CARET_EQ] = ACTIONS(1608), - [anon_sym_PIPE_EQ] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(4551), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(4557), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1608), - [anon_sym_LT_LT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4551), - [anon_sym_SLASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(4542), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DASH_GT] = ACTIONS(1608), - [sym_number_literal] = ACTIONS(4542), - [sym_char_literal] = ACTIONS(4542), - [sym_string_literal] = ACTIONS(4557), - [sym_identifier] = ACTIONS(4562), + [sym__expression] = STATE(1271), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(5684), + [anon_sym_RPAREN] = ACTIONS(5688), + [sym__pound_include] = ACTIONS(5690), + [sym__pound_define] = ACTIONS(5690), + [sym__pound_if] = ACTIONS(5690), + [sym__pound_ifdef] = ACTIONS(5690), + [sym__pound_endif] = ACTIONS(5690), + [sym__pound_else] = ACTIONS(5690), + [sym_preproc_directive] = ACTIONS(5693), + [anon_sym_SEMI] = ACTIONS(5696), + [anon_sym_extern] = ACTIONS(5700), + [anon_sym_LBRACE] = ACTIONS(5706), + [anon_sym_RBRACE] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(5715), + [anon_sym_typedef] = ACTIONS(5700), + [anon_sym_static] = ACTIONS(5700), + [anon_sym_auto] = ACTIONS(5700), + [anon_sym_register] = ACTIONS(5700), + [anon_sym_const] = ACTIONS(5700), + [anon_sym_restrict] = ACTIONS(5700), + [anon_sym_volatile] = ACTIONS(5700), + [sym_function_specifier] = ACTIONS(5700), + [anon_sym_unsigned] = ACTIONS(5700), + [anon_sym_long] = ACTIONS(5700), + [anon_sym_short] = ACTIONS(5700), + [anon_sym_enum] = ACTIONS(5700), + [anon_sym_struct] = ACTIONS(5700), + [anon_sym_union] = ACTIONS(5700), + [anon_sym_if] = ACTIONS(5690), + [anon_sym_else] = ACTIONS(5690), + [anon_sym_switch] = ACTIONS(5690), + [anon_sym_case] = ACTIONS(5690), + [anon_sym_default] = ACTIONS(5690), + [anon_sym_while] = ACTIONS(5690), + [anon_sym_do] = ACTIONS(5690), + [anon_sym_for] = ACTIONS(5690), + [anon_sym_return] = ACTIONS(5690), + [anon_sym_break] = ACTIONS(5690), + [anon_sym_continue] = ACTIONS(5690), + [anon_sym_goto] = ACTIONS(5690), + [anon_sym_AMP] = ACTIONS(5715), + [anon_sym_BANG] = ACTIONS(5719), + [anon_sym_TILDE] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5727), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_DASH_DASH] = ACTIONS(5731), + [anon_sym_PLUS_PLUS] = ACTIONS(5731), + [anon_sym_sizeof] = ACTIONS(5735), + [sym_number_literal] = ACTIONS(5739), + [sym_char_literal] = ACTIONS(5739), + [sym_string_literal] = ACTIONS(5743), + [sym_identifier] = ACTIONS(5747), [sym_comment] = ACTIONS(121), }, [1153] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym__expression] = STATE(1304), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(5754), + [anon_sym_COMMA] = ACTIONS(5754), + [anon_sym_RPAREN] = ACTIONS(5754), + [anon_sym_SEMI] = ACTIONS(5763), + [anon_sym_LBRACE] = ACTIONS(5769), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(5772), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(5782), + [anon_sym_COLON] = ACTIONS(5787), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_DASH_GT] = ACTIONS(1766), [sym_comment] = ACTIONS(121), }, [1154] = { - [sym__expression] = STATE(1304), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(1272), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2982), [sym_comment] = ACTIONS(121), }, [1155] = { - [sym__expression] = STATE(1306), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1273), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1156] = { - [sym__expression] = STATE(1307), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(5791), + [anon_sym_COMMA] = ACTIONS(5795), + [anon_sym_RPAREN] = ACTIONS(5795), + [anon_sym_SEMI] = ACTIONS(5795), + [anon_sym_extern] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(5798), + [anon_sym_LBRACK] = ACTIONS(5795), + [anon_sym_RBRACK] = ACTIONS(5795), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(733), + [anon_sym_static] = ACTIONS(733), + [anon_sym_auto] = ACTIONS(733), + [anon_sym_register] = ACTIONS(733), + [anon_sym_const] = ACTIONS(733), + [anon_sym_restrict] = ACTIONS(733), + [anon_sym_volatile] = ACTIONS(733), + [sym_function_specifier] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(5798), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(5802), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(5805), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_sizeof] = ACTIONS(5816), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(5819), + [sym_char_literal] = ACTIONS(5819), + [sym_string_literal] = ACTIONS(5822), + [sym_identifier] = ACTIONS(5825), [sym_comment] = ACTIONS(121), }, [1157] = { - [sym__expression] = STATE(1308), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(5828), + [sym__pound_include] = ACTIONS(5831), + [sym__pound_define] = ACTIONS(5831), + [sym__pound_if] = ACTIONS(5831), + [sym__pound_ifdef] = ACTIONS(5831), + [sym__pound_endif] = ACTIONS(5831), + [sym__pound_else] = ACTIONS(5831), + [sym_preproc_directive] = ACTIONS(5834), + [anon_sym_extern] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_typedef] = ACTIONS(5831), + [anon_sym_static] = ACTIONS(5831), + [anon_sym_auto] = ACTIONS(5831), + [anon_sym_register] = ACTIONS(5831), + [anon_sym_const] = ACTIONS(5831), + [anon_sym_restrict] = ACTIONS(5831), + [anon_sym_volatile] = ACTIONS(5831), + [sym_function_specifier] = ACTIONS(5831), + [anon_sym_unsigned] = ACTIONS(5831), + [anon_sym_long] = ACTIONS(5831), + [anon_sym_short] = ACTIONS(5831), + [anon_sym_enum] = ACTIONS(5831), + [anon_sym_struct] = ACTIONS(5831), + [anon_sym_union] = ACTIONS(5831), + [sym_identifier] = ACTIONS(5834), [sym_comment] = ACTIONS(121), }, [1158] = { - [sym__expression] = STATE(1310), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4571), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__pound_endif] = ACTIONS(5837), [sym_comment] = ACTIONS(121), }, [1159] = { - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(4573), - [anon_sym_SEMI] = ACTIONS(4577), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4581), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(4584), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(5839), + [sym__pound_include] = ACTIONS(5842), + [sym__pound_define] = ACTIONS(5842), + [sym__pound_if] = ACTIONS(5842), + [sym__pound_ifdef] = ACTIONS(5842), + [sym__pound_endif] = ACTIONS(5842), + [sym__pound_else] = ACTIONS(5842), + [sym_preproc_directive] = ACTIONS(5845), + [anon_sym_SEMI] = ACTIONS(5839), + [anon_sym_extern] = ACTIONS(5842), + [anon_sym_LBRACE] = ACTIONS(5839), + [anon_sym_RBRACE] = ACTIONS(5839), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_typedef] = ACTIONS(5842), + [anon_sym_static] = ACTIONS(5842), + [anon_sym_auto] = ACTIONS(5842), + [anon_sym_register] = ACTIONS(5842), + [anon_sym_const] = ACTIONS(5842), + [anon_sym_restrict] = ACTIONS(5842), + [anon_sym_volatile] = ACTIONS(5842), + [sym_function_specifier] = ACTIONS(5842), + [anon_sym_unsigned] = ACTIONS(5842), + [anon_sym_long] = ACTIONS(5842), + [anon_sym_short] = ACTIONS(5842), + [anon_sym_enum] = ACTIONS(5842), + [anon_sym_struct] = ACTIONS(5842), + [anon_sym_union] = ACTIONS(5842), + [anon_sym_if] = ACTIONS(5842), + [anon_sym_switch] = ACTIONS(5842), + [anon_sym_case] = ACTIONS(5842), + [anon_sym_default] = ACTIONS(5842), + [anon_sym_while] = ACTIONS(5842), + [anon_sym_do] = ACTIONS(5842), + [anon_sym_for] = ACTIONS(5842), + [anon_sym_return] = ACTIONS(5842), + [anon_sym_break] = ACTIONS(5842), + [anon_sym_continue] = ACTIONS(5842), + [anon_sym_goto] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5839), + [anon_sym_BANG] = ACTIONS(5839), + [anon_sym_TILDE] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5842), + [anon_sym_DASH_DASH] = ACTIONS(5839), + [anon_sym_PLUS_PLUS] = ACTIONS(5839), + [anon_sym_sizeof] = ACTIONS(5842), + [sym_number_literal] = ACTIONS(5842), + [sym_char_literal] = ACTIONS(5842), + [sym_string_literal] = ACTIONS(5839), + [sym_identifier] = ACTIONS(5845), [sym_comment] = ACTIONS(121), }, [1160] = { - [sym__declarator] = STATE(140), - [sym__field_declarator] = STATE(422), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_init_declarator] = STATE(141), - [anon_sym_LPAREN] = ACTIONS(4588), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_STAR] = ACTIONS(4590), - [anon_sym_COLON] = ACTIONS(1084), - [sym_identifier] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(5848), [sym_comment] = ACTIONS(121), }, [1161] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(4594), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_QMARK] = ACTIONS(4601), - [anon_sym_STAR_EQ] = ACTIONS(4603), - [anon_sym_SLASH_EQ] = ACTIONS(4603), - [anon_sym_PERCENT_EQ] = ACTIONS(4603), - [anon_sym_PLUS_EQ] = ACTIONS(4603), - [anon_sym_DASH_EQ] = ACTIONS(4603), - [anon_sym_LT_LT_EQ] = ACTIONS(4603), - [anon_sym_GT_GT_EQ] = ACTIONS(4603), - [anon_sym_AMP_EQ] = ACTIONS(4603), - [anon_sym_CARET_EQ] = ACTIONS(4603), - [anon_sym_PIPE_EQ] = ACTIONS(4603), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_PIPE_PIPE] = ACTIONS(4607), - [anon_sym_AMP_AMP] = ACTIONS(4607), - [anon_sym_PIPE] = ACTIONS(4605), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_EQ_EQ] = ACTIONS(4609), - [anon_sym_BANG_EQ] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4611), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_LT_EQ] = ACTIONS(4613), - [anon_sym_GT_EQ] = ACTIONS(4613), - [anon_sym_LT_LT] = ACTIONS(4615), - [anon_sym_GT_GT] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4597), - [anon_sym_PERCENT] = ACTIONS(4597), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(5850), [sym_comment] = ACTIONS(121), }, [1162] = { - [sym__top_level_item] = STATE(166), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(42), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(129), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(257), + [sym__expression] = STATE(1278), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1163] = { - [sym__declaration_specifiers] = STATE(322), - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym__abstract_declarator] = STATE(359), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1116), - [sym__type_specifier] = STATE(1117), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_list] = STATE(187), - [sym_parameter_declaration] = STATE(320), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1289), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4206), + [anon_sym_COLON] = ACTIONS(5852), [sym_comment] = ACTIONS(121), }, [1164] = { - [sym__declarator] = STATE(1166), - [sym__field_declarator] = STATE(1167), - [sym__abstract_declarator] = STATE(360), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [sym__expression] = STATE(1293), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(5854), [sym_comment] = ACTIONS(121), }, [1165] = { - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_RPAREN] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(4620), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(5856), [sym_comment] = ACTIONS(121), }, [1166] = { - [sym_parameter_list] = STATE(145), - [anon_sym_LPAREN] = ACTIONS(3472), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_RPAREN] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1167] = { - [sym_parameter_list] = STATE(425), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(1446), + [sym__pound_endif] = ACTIONS(5860), [sym_comment] = ACTIONS(121), }, [1168] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_STAR] = ACTIONS(4630), - [anon_sym_LBRACK] = ACTIONS(4634), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4638), - [anon_sym_COLON] = ACTIONS(4627), - [anon_sym_QMARK] = ACTIONS(4642), - [anon_sym_STAR_EQ] = ACTIONS(4646), - [anon_sym_SLASH_EQ] = ACTIONS(4646), - [anon_sym_PERCENT_EQ] = ACTIONS(4646), - [anon_sym_PLUS_EQ] = ACTIONS(4646), - [anon_sym_DASH_EQ] = ACTIONS(4646), - [anon_sym_LT_LT_EQ] = ACTIONS(4646), - [anon_sym_GT_GT_EQ] = ACTIONS(4646), - [anon_sym_AMP_EQ] = ACTIONS(4646), - [anon_sym_CARET_EQ] = ACTIONS(4646), - [anon_sym_PIPE_EQ] = ACTIONS(4646), - [anon_sym_AMP] = ACTIONS(4650), - [anon_sym_PIPE_PIPE] = ACTIONS(4654), - [anon_sym_AMP_AMP] = ACTIONS(4654), - [anon_sym_PIPE] = ACTIONS(4650), - [anon_sym_CARET] = ACTIONS(4650), - [anon_sym_EQ_EQ] = ACTIONS(4658), - [anon_sym_BANG_EQ] = ACTIONS(4658), - [anon_sym_LT] = ACTIONS(4662), - [anon_sym_GT] = ACTIONS(4662), - [anon_sym_LT_EQ] = ACTIONS(4666), - [anon_sym_GT_EQ] = ACTIONS(4666), - [anon_sym_LT_LT] = ACTIONS(4670), - [anon_sym_GT_GT] = ACTIONS(4670), - [anon_sym_PLUS] = ACTIONS(4674), - [anon_sym_DASH] = ACTIONS(4674), - [anon_sym_SLASH] = ACTIONS(4630), - [anon_sym_PERCENT] = ACTIONS(4630), - [anon_sym_DASH_DASH] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4678), - [anon_sym_DOT] = ACTIONS(4682), - [anon_sym_DASH_GT] = ACTIONS(4682), + [sym_compound_statement] = STATE(1284), + [sym_labeled_statement] = STATE(1284), + [sym_expression_statement] = STATE(1284), + [sym_if_statement] = STATE(1284), + [sym_switch_statement] = STATE(1284), + [sym_case_statement] = STATE(1284), + [sym_while_statement] = STATE(1284), + [sym_do_statement] = STATE(1284), + [sym_for_statement] = STATE(1284), + [sym_return_statement] = STATE(1284), + [sym_break_statement] = STATE(1284), + [sym_continue_statement] = STATE(1284), + [sym_goto_statement] = STATE(1284), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(5862), + [anon_sym_COMMA] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(5865), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(1902), + [anon_sym_STAR_EQ] = ACTIONS(1902), + [anon_sym_SLASH_EQ] = ACTIONS(1902), + [anon_sym_PERCENT_EQ] = ACTIONS(1902), + [anon_sym_PLUS_EQ] = ACTIONS(1902), + [anon_sym_DASH_EQ] = ACTIONS(1902), + [anon_sym_LT_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_GT_EQ] = ACTIONS(1902), + [anon_sym_AMP_EQ] = ACTIONS(1902), + [anon_sym_CARET_EQ] = ACTIONS(1902), + [anon_sym_PIPE_EQ] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_CARET] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(1902), + [anon_sym_BANG_EQ] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_GT] = ACTIONS(1904), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_LT_LT] = ACTIONS(1904), + [anon_sym_GT_GT] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_PERCENT] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(5874), + [anon_sym_PLUS_PLUS] = ACTIONS(5874), + [anon_sym_sizeof] = ACTIONS(555), + [anon_sym_DOT] = ACTIONS(1902), + [anon_sym_DASH_GT] = ACTIONS(1902), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1169] = { - [anon_sym_LPAREN] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_SEMI] = ACTIONS(4691), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(4686), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_COLON] = ACTIONS(1734), + [sym__expression] = STATE(1285), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(1286), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_sizeof] = ACTIONS(663), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1170] = { - [sym__expression] = STATE(1215), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declaration_specifiers] = STATE(134), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym__abstract_declarator] = STATE(219), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(1044), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_parameter_list] = STATE(127), + [sym_parameter_declaration] = STATE(132), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(384), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4236), [sym_comment] = ACTIONS(121), }, [1171] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(4694), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__declarator] = STATE(84), + [sym__field_declarator] = STATE(205), + [sym__abstract_declarator] = STATE(220), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(5877), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4254), [sym_comment] = ACTIONS(121), }, [1172] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4696), - [anon_sym_COMMA] = ACTIONS(4699), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(4705), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_STAR] = ACTIONS(4713), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_RBRACK] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_STAR_EQ] = ACTIONS(4725), - [anon_sym_SLASH_EQ] = ACTIONS(4725), - [anon_sym_PERCENT_EQ] = ACTIONS(4725), - [anon_sym_PLUS_EQ] = ACTIONS(4725), - [anon_sym_DASH_EQ] = ACTIONS(4725), - [anon_sym_LT_LT_EQ] = ACTIONS(4725), - [anon_sym_GT_GT_EQ] = ACTIONS(4725), - [anon_sym_AMP_EQ] = ACTIONS(4725), - [anon_sym_CARET_EQ] = ACTIONS(4725), - [anon_sym_PIPE_EQ] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4731), - [anon_sym_AMP_AMP] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4728), - [anon_sym_CARET] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4734), - [anon_sym_BANG_EQ] = ACTIONS(4734), - [anon_sym_LT] = ACTIONS(4737), - [anon_sym_GT] = ACTIONS(4737), - [anon_sym_LT_EQ] = ACTIONS(4740), - [anon_sym_GT_EQ] = ACTIONS(4740), - [anon_sym_LT_LT] = ACTIONS(4743), - [anon_sym_GT_GT] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(4746), - [anon_sym_DASH] = ACTIONS(4746), - [anon_sym_SLASH] = ACTIONS(4713), - [anon_sym_PERCENT] = ACTIONS(4713), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4260), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1173] = { - [anon_sym_COMMA] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_RPAREN] = ACTIONS(5880), [sym_comment] = ACTIONS(121), - }, - [1174] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(4415), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + }, + [1174] = { + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1175] = { - [ts_builtin_sym_end] = ACTIONS(4762), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(3411), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(4762), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(3411), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(3411), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(3411), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(3411), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(3411), - [sym_preproc_directive] = ACTIONS(4765), - [anon_sym_SEMI] = ACTIONS(4762), - [anon_sym_extern] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(4762), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4762), - [anon_sym_typedef] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_auto] = ACTIONS(3411), - [anon_sym_register] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_restrict] = ACTIONS(3411), - [anon_sym_volatile] = ACTIONS(3411), - [sym_function_specifier] = ACTIONS(3411), - [anon_sym_unsigned] = ACTIONS(3411), - [anon_sym_long] = ACTIONS(3411), - [anon_sym_short] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_union] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_goto] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4762), - [anon_sym_TILDE] = ACTIONS(4762), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(4762), - [anon_sym_PLUS_PLUS] = ACTIONS(4762), - [anon_sym_sizeof] = ACTIONS(3411), - [sym_number_literal] = ACTIONS(3411), - [sym_char_literal] = ACTIONS(3411), - [sym_string_literal] = ACTIONS(4762), - [sym_identifier] = ACTIONS(4765), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_QMARK] = ACTIONS(5894), + [anon_sym_STAR_EQ] = ACTIONS(5897), + [anon_sym_SLASH_EQ] = ACTIONS(5897), + [anon_sym_PERCENT_EQ] = ACTIONS(5897), + [anon_sym_PLUS_EQ] = ACTIONS(5897), + [anon_sym_DASH_EQ] = ACTIONS(5897), + [anon_sym_LT_LT_EQ] = ACTIONS(5897), + [anon_sym_GT_GT_EQ] = ACTIONS(5897), + [anon_sym_AMP_EQ] = ACTIONS(5897), + [anon_sym_CARET_EQ] = ACTIONS(5897), + [anon_sym_PIPE_EQ] = ACTIONS(5897), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym_PIPE_PIPE] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5900), + [anon_sym_CARET] = ACTIONS(5900), + [anon_sym_EQ_EQ] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(5909), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_LT_EQ] = ACTIONS(5912), + [anon_sym_GT_EQ] = ACTIONS(5912), + [anon_sym_LT_LT] = ACTIONS(5915), + [anon_sym_GT_GT] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_PERCENT] = ACTIONS(5885), + [anon_sym_DASH_DASH] = ACTIONS(5918), + [anon_sym_PLUS_PLUS] = ACTIONS(5918), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DASH_GT] = ACTIONS(5921), [sym_comment] = ACTIONS(121), }, [1176] = { - [ts_builtin_sym_end] = ACTIONS(4768), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(4772), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4768), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(4772), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(4772), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(4772), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(4772), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(4772), - [sym_preproc_directive] = ACTIONS(4776), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_extern] = ACTIONS(4772), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_typedef] = ACTIONS(4772), - [anon_sym_static] = ACTIONS(4772), - [anon_sym_auto] = ACTIONS(4772), - [anon_sym_register] = ACTIONS(4772), - [anon_sym_const] = ACTIONS(4772), - [anon_sym_restrict] = ACTIONS(4772), - [anon_sym_volatile] = ACTIONS(4772), - [sym_function_specifier] = ACTIONS(4772), - [anon_sym_unsigned] = ACTIONS(4772), - [anon_sym_long] = ACTIONS(4772), - [anon_sym_short] = ACTIONS(4772), - [anon_sym_enum] = ACTIONS(4772), - [anon_sym_struct] = ACTIONS(4772), - [anon_sym_union] = ACTIONS(4772), - [anon_sym_if] = ACTIONS(4772), - [anon_sym_else] = ACTIONS(4772), - [anon_sym_switch] = ACTIONS(4772), - [anon_sym_case] = ACTIONS(4772), - [anon_sym_default] = ACTIONS(4772), - [anon_sym_while] = ACTIONS(4772), - [anon_sym_do] = ACTIONS(4772), - [anon_sym_for] = ACTIONS(4772), - [anon_sym_return] = ACTIONS(4772), - [anon_sym_break] = ACTIONS(4772), - [anon_sym_continue] = ACTIONS(4772), - [anon_sym_goto] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4768), - [anon_sym_BANG] = ACTIONS(4768), - [anon_sym_TILDE] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_sizeof] = ACTIONS(4772), - [sym_number_literal] = ACTIONS(4772), - [sym_char_literal] = ACTIONS(4772), - [sym_string_literal] = ACTIONS(4768), - [sym_identifier] = ACTIONS(4776), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5927), + [anon_sym_QMARK] = ACTIONS(5930), + [anon_sym_STAR_EQ] = ACTIONS(5933), + [anon_sym_SLASH_EQ] = ACTIONS(5933), + [anon_sym_PERCENT_EQ] = ACTIONS(5933), + [anon_sym_PLUS_EQ] = ACTIONS(5933), + [anon_sym_DASH_EQ] = ACTIONS(5933), + [anon_sym_LT_LT_EQ] = ACTIONS(5933), + [anon_sym_GT_GT_EQ] = ACTIONS(5933), + [anon_sym_AMP_EQ] = ACTIONS(5933), + [anon_sym_CARET_EQ] = ACTIONS(5933), + [anon_sym_PIPE_EQ] = ACTIONS(5933), + [anon_sym_AMP] = ACTIONS(5936), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5936), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_LT] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5945), + [anon_sym_LT_EQ] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5951), + [anon_sym_GT_GT] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5924), + [anon_sym_DASH] = ACTIONS(5924), + [anon_sym_SLASH] = ACTIONS(5924), + [anon_sym_PERCENT] = ACTIONS(5924), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), [sym_comment] = ACTIONS(121), }, [1177] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_COLON] = ACTIONS(1829), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_STAR_EQ] = ACTIONS(4801), - [anon_sym_SLASH_EQ] = ACTIONS(4801), - [anon_sym_PERCENT_EQ] = ACTIONS(4801), - [anon_sym_PLUS_EQ] = ACTIONS(4801), - [anon_sym_DASH_EQ] = ACTIONS(4801), - [anon_sym_LT_LT_EQ] = ACTIONS(4801), - [anon_sym_GT_GT_EQ] = ACTIONS(4801), - [anon_sym_AMP_EQ] = ACTIONS(4801), - [anon_sym_CARET_EQ] = ACTIONS(4801), - [anon_sym_PIPE_EQ] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_CARET] = ACTIONS(4804), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4813), - [anon_sym_GT] = ACTIONS(4813), - [anon_sym_LT_EQ] = ACTIONS(4816), - [anon_sym_GT_EQ] = ACTIONS(4816), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4822), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_PERCENT] = ACTIONS(4789), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4828), - [anon_sym_DASH_GT] = ACTIONS(4828), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5957), + [anon_sym_QMARK] = ACTIONS(5960), + [anon_sym_STAR_EQ] = ACTIONS(5963), + [anon_sym_SLASH_EQ] = ACTIONS(5963), + [anon_sym_PERCENT_EQ] = ACTIONS(5963), + [anon_sym_PLUS_EQ] = ACTIONS(5963), + [anon_sym_DASH_EQ] = ACTIONS(5963), + [anon_sym_LT_LT_EQ] = ACTIONS(5963), + [anon_sym_GT_GT_EQ] = ACTIONS(5963), + [anon_sym_AMP_EQ] = ACTIONS(5963), + [anon_sym_CARET_EQ] = ACTIONS(5963), + [anon_sym_PIPE_EQ] = ACTIONS(5963), + [anon_sym_AMP] = ACTIONS(5966), + [anon_sym_PIPE_PIPE] = ACTIONS(5969), + [anon_sym_AMP_AMP] = ACTIONS(5969), + [anon_sym_PIPE] = ACTIONS(5966), + [anon_sym_CARET] = ACTIONS(5966), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_LT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_GT_EQ] = ACTIONS(5978), + [anon_sym_LT_LT] = ACTIONS(5981), + [anon_sym_GT_GT] = ACTIONS(5981), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5954), + [anon_sym_SLASH] = ACTIONS(5954), + [anon_sym_PERCENT] = ACTIONS(5954), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_DASH_GT] = ACTIONS(5150), [sym_comment] = ACTIONS(121), }, [1178] = { - [sym__expression] = STATE(1324), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(5987), + [anon_sym_LBRACK] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5996), + [anon_sym_STAR_EQ] = ACTIONS(5999), + [anon_sym_SLASH_EQ] = ACTIONS(5999), + [anon_sym_PERCENT_EQ] = ACTIONS(5999), + [anon_sym_PLUS_EQ] = ACTIONS(5999), + [anon_sym_DASH_EQ] = ACTIONS(5999), + [anon_sym_LT_LT_EQ] = ACTIONS(5999), + [anon_sym_GT_GT_EQ] = ACTIONS(5999), + [anon_sym_AMP_EQ] = ACTIONS(5999), + [anon_sym_CARET_EQ] = ACTIONS(5999), + [anon_sym_PIPE_EQ] = ACTIONS(5999), + [anon_sym_AMP] = ACTIONS(6002), + [anon_sym_PIPE_PIPE] = ACTIONS(6005), + [anon_sym_AMP_AMP] = ACTIONS(6005), + [anon_sym_PIPE] = ACTIONS(6002), + [anon_sym_CARET] = ACTIONS(6002), + [anon_sym_EQ_EQ] = ACTIONS(6008), + [anon_sym_BANG_EQ] = ACTIONS(6008), + [anon_sym_LT] = ACTIONS(6011), + [anon_sym_GT] = ACTIONS(6011), + [anon_sym_LT_EQ] = ACTIONS(6014), + [anon_sym_GT_EQ] = ACTIONS(6014), + [anon_sym_LT_LT] = ACTIONS(6017), + [anon_sym_GT_GT] = ACTIONS(6017), + [anon_sym_PLUS] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5987), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_PERCENT] = ACTIONS(5987), + [anon_sym_DASH_DASH] = ACTIONS(6020), + [anon_sym_PLUS_PLUS] = ACTIONS(6020), + [anon_sym_DOT] = ACTIONS(6023), + [anon_sym_DASH_GT] = ACTIONS(6023), [sym_comment] = ACTIONS(121), }, [1179] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(4831), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1288), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [1180] = { - [sym__expression] = STATE(1325), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5443), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(6026), + [anon_sym_LBRACK] = ACTIONS(5449), + [anon_sym_EQ] = ACTIONS(6029), + [anon_sym_QMARK] = ACTIONS(6032), + [anon_sym_STAR_EQ] = ACTIONS(6035), + [anon_sym_SLASH_EQ] = ACTIONS(6035), + [anon_sym_PERCENT_EQ] = ACTIONS(6035), + [anon_sym_PLUS_EQ] = ACTIONS(6035), + [anon_sym_DASH_EQ] = ACTIONS(6035), + [anon_sym_LT_LT_EQ] = ACTIONS(6035), + [anon_sym_GT_GT_EQ] = ACTIONS(6035), + [anon_sym_AMP_EQ] = ACTIONS(6035), + [anon_sym_CARET_EQ] = ACTIONS(6035), + [anon_sym_PIPE_EQ] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6038), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6038), + [anon_sym_CARET] = ACTIONS(6038), + [anon_sym_EQ_EQ] = ACTIONS(6044), + [anon_sym_BANG_EQ] = ACTIONS(6044), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_LT_EQ] = ACTIONS(6050), + [anon_sym_GT_EQ] = ACTIONS(6050), + [anon_sym_LT_LT] = ACTIONS(6053), + [anon_sym_GT_GT] = ACTIONS(6053), + [anon_sym_PLUS] = ACTIONS(6026), + [anon_sym_DASH] = ACTIONS(6026), + [anon_sym_SLASH] = ACTIONS(6026), + [anon_sym_PERCENT] = ACTIONS(6026), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5485), + [anon_sym_DASH_GT] = ACTIONS(5485), [sym_comment] = ACTIONS(121), }, [1181] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__declarator] = STATE(1096), + [sym__abstract_declarator] = STATE(220), + [sym_pointer_declarator] = STATE(44), + [sym_abstract_pointer_declarator] = STATE(126), + [sym_function_declarator] = STATE(44), + [sym_abstract_function_declarator] = STATE(126), + [sym_array_declarator] = STATE(44), + [sym_abstract_array_declarator] = STATE(126), + [sym_parameter_list] = STATE(127), + [anon_sym_LPAREN] = ACTIONS(6056), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(2880), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(121), }, [1182] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4835), + [sym_parameter_list] = STATE(92), + [aux_sym_declaration_repeat1] = STATE(93), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(5584), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(343), [sym_comment] = ACTIONS(121), }, [1183] = { - [sym__expression] = STATE(1328), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1289), + [sym_comma_expression] = STATE(464), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1184] = { - [sym_declaration] = STATE(1107), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(1329), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym_compound_statement] = STATE(1290), + [sym_labeled_statement] = STATE(1290), + [sym_expression_statement] = STATE(1290), + [sym_if_statement] = STATE(1290), + [sym_switch_statement] = STATE(1290), + [sym_case_statement] = STATE(1290), + [sym_while_statement] = STATE(1290), + [sym_do_statement] = STATE(1290), + [sym_for_statement] = STATE(1290), + [sym_return_statement] = STATE(1290), + [sym_break_statement] = STATE(1290), + [sym_continue_statement] = STATE(1290), + [sym_goto_statement] = STATE(1290), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(5595), + [anon_sym_COMMA] = ACTIONS(5600), + [anon_sym_RPAREN] = ACTIONS(5600), + [sym__pound_include] = ACTIONS(1966), + [sym__pound_define] = ACTIONS(1966), + [sym__pound_if] = ACTIONS(1966), + [sym__pound_ifdef] = ACTIONS(1966), + [sym__pound_endif] = ACTIONS(1966), + [sym__pound_else] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_STAR] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_RBRACK] = ACTIONS(5600), + [anon_sym_EQ] = ACTIONS(5620), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_auto] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [sym_function_specifier] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_COLON] = ACTIONS(5600), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(5626), + [anon_sym_case] = ACTIONS(5629), + [anon_sym_default] = ACTIONS(5632), + [anon_sym_while] = ACTIONS(5635), + [anon_sym_do] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5641), + [anon_sym_return] = ACTIONS(5644), + [anon_sym_break] = ACTIONS(5647), + [anon_sym_continue] = ACTIONS(5650), + [anon_sym_goto] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5600), + [anon_sym_STAR_EQ] = ACTIONS(5600), + [anon_sym_SLASH_EQ] = ACTIONS(5600), + [anon_sym_PERCENT_EQ] = ACTIONS(5600), + [anon_sym_PLUS_EQ] = ACTIONS(5600), + [anon_sym_DASH_EQ] = ACTIONS(5600), + [anon_sym_LT_LT_EQ] = ACTIONS(5600), + [anon_sym_GT_GT_EQ] = ACTIONS(5600), + [anon_sym_AMP_EQ] = ACTIONS(5600), + [anon_sym_CARET_EQ] = ACTIONS(5600), + [anon_sym_PIPE_EQ] = ACTIONS(5600), + [anon_sym_AMP] = ACTIONS(5615), + [anon_sym_PIPE_PIPE] = ACTIONS(5600), + [anon_sym_AMP_AMP] = ACTIONS(5600), + [anon_sym_BANG] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5620), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_TILDE] = ACTIONS(5659), + [anon_sym_EQ_EQ] = ACTIONS(5600), + [anon_sym_BANG_EQ] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5620), + [anon_sym_LT_EQ] = ACTIONS(5600), + [anon_sym_GT_EQ] = ACTIONS(5600), + [anon_sym_LT_LT] = ACTIONS(5620), + [anon_sym_GT_GT] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_SLASH] = ACTIONS(5620), + [anon_sym_PERCENT] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5667), + [anon_sym_sizeof] = ACTIONS(5672), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_DASH_GT] = ACTIONS(5600), + [sym_number_literal] = ACTIONS(5675), + [sym_char_literal] = ACTIONS(5675), + [sym_string_literal] = ACTIONS(5678), + [sym_identifier] = ACTIONS(5681), [sym_comment] = ACTIONS(121), }, [1185] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1291), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(5559), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1186] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4842), - [anon_sym_EQ] = ACTIONS(4850), - [anon_sym_COLON] = ACTIONS(4842), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_STAR_EQ] = ACTIONS(4856), - [anon_sym_SLASH_EQ] = ACTIONS(4856), - [anon_sym_PERCENT_EQ] = ACTIONS(4856), - [anon_sym_PLUS_EQ] = ACTIONS(4856), - [anon_sym_DASH_EQ] = ACTIONS(4856), - [anon_sym_LT_LT_EQ] = ACTIONS(4856), - [anon_sym_GT_GT_EQ] = ACTIONS(4856), - [anon_sym_AMP_EQ] = ACTIONS(4856), - [anon_sym_CARET_EQ] = ACTIONS(4856), - [anon_sym_PIPE_EQ] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4859), - [anon_sym_CARET] = ACTIONS(4859), - [anon_sym_EQ_EQ] = ACTIONS(4865), - [anon_sym_BANG_EQ] = ACTIONS(4865), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4871), - [anon_sym_GT_EQ] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(4874), - [anon_sym_GT_GT] = ACTIONS(4874), - [anon_sym_PLUS] = ACTIONS(4877), - [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4880), - [anon_sym_PLUS_PLUS] = ACTIONS(4880), - [anon_sym_DOT] = ACTIONS(4883), - [anon_sym_DASH_GT] = ACTIONS(4883), + [sym__expression] = STATE(1292), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1187] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_STAR] = ACTIONS(4893), - [anon_sym_LBRACK] = ACTIONS(4897), - [anon_sym_RBRACK] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4905), - [anon_sym_STAR_EQ] = ACTIONS(4909), - [anon_sym_SLASH_EQ] = ACTIONS(4909), - [anon_sym_PERCENT_EQ] = ACTIONS(4909), - [anon_sym_PLUS_EQ] = ACTIONS(4909), - [anon_sym_DASH_EQ] = ACTIONS(4909), - [anon_sym_LT_LT_EQ] = ACTIONS(4909), - [anon_sym_GT_GT_EQ] = ACTIONS(4909), - [anon_sym_AMP_EQ] = ACTIONS(4909), - [anon_sym_CARET_EQ] = ACTIONS(4909), - [anon_sym_PIPE_EQ] = ACTIONS(4909), - [anon_sym_AMP] = ACTIONS(4913), - [anon_sym_PIPE_PIPE] = ACTIONS(4917), - [anon_sym_AMP_AMP] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4913), - [anon_sym_CARET] = ACTIONS(4913), - [anon_sym_EQ_EQ] = ACTIONS(4921), - [anon_sym_BANG_EQ] = ACTIONS(4921), - [anon_sym_LT] = ACTIONS(4925), - [anon_sym_GT] = ACTIONS(4925), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_LT_LT] = ACTIONS(4933), - [anon_sym_GT_GT] = ACTIONS(4933), - [anon_sym_PLUS] = ACTIONS(4937), - [anon_sym_DASH] = ACTIONS(4937), - [anon_sym_SLASH] = ACTIONS(4893), - [anon_sym_PERCENT] = ACTIONS(4893), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_DASH_GT] = ACTIONS(4945), + [sym__expression] = STATE(1293), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1188] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(4952), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_RBRACK] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(4961), - [anon_sym_STAR_EQ] = ACTIONS(4964), - [anon_sym_SLASH_EQ] = ACTIONS(4964), - [anon_sym_PERCENT_EQ] = ACTIONS(4964), - [anon_sym_PLUS_EQ] = ACTIONS(4964), - [anon_sym_DASH_EQ] = ACTIONS(4964), - [anon_sym_LT_LT_EQ] = ACTIONS(4964), - [anon_sym_GT_GT_EQ] = ACTIONS(4964), - [anon_sym_AMP_EQ] = ACTIONS(4964), - [anon_sym_CARET_EQ] = ACTIONS(4964), - [anon_sym_PIPE_EQ] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4967), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym_EQ_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_LT_EQ] = ACTIONS(4979), - [anon_sym_GT_EQ] = ACTIONS(4979), - [anon_sym_LT_LT] = ACTIONS(4982), - [anon_sym_GT_GT] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4952), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), + [sym__expression] = STATE(1294), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1189] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_RBRACK] = ACTIONS(794), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5009), - [anon_sym_SLASH_EQ] = ACTIONS(5009), - [anon_sym_PERCENT_EQ] = ACTIONS(5009), - [anon_sym_PLUS_EQ] = ACTIONS(5009), - [anon_sym_DASH_EQ] = ACTIONS(5009), - [anon_sym_LT_LT_EQ] = ACTIONS(5009), - [anon_sym_GT_GT_EQ] = ACTIONS(5009), - [anon_sym_AMP_EQ] = ACTIONS(5009), - [anon_sym_CARET_EQ] = ACTIONS(5009), - [anon_sym_PIPE_EQ] = ACTIONS(5009), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_PIPE_PIPE] = ACTIONS(5015), - [anon_sym_AMP_AMP] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_LT_EQ] = ACTIONS(5024), - [anon_sym_GT_EQ] = ACTIONS(5024), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5030), - [anon_sym_DASH] = ACTIONS(5030), - [anon_sym_SLASH] = ACTIONS(4997), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_DASH_GT] = ACTIONS(5036), + [sym__expression] = STATE(1295), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1190] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(5048), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5054), - [anon_sym_SLASH_EQ] = ACTIONS(5054), - [anon_sym_PERCENT_EQ] = ACTIONS(5054), - [anon_sym_PLUS_EQ] = ACTIONS(5054), - [anon_sym_DASH_EQ] = ACTIONS(5054), - [anon_sym_LT_LT_EQ] = ACTIONS(5054), - [anon_sym_GT_GT_EQ] = ACTIONS(5054), - [anon_sym_AMP_EQ] = ACTIONS(5054), - [anon_sym_CARET_EQ] = ACTIONS(5054), - [anon_sym_PIPE_EQ] = ACTIONS(5054), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_PIPE_PIPE] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5060), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_EQ_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_LT_LT] = ACTIONS(5072), - [anon_sym_GT_GT] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5042), - [anon_sym_PERCENT] = ACTIONS(5042), - [anon_sym_DASH_DASH] = ACTIONS(5078), - [anon_sym_PLUS_PLUS] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_DASH_GT] = ACTIONS(5081), + [sym__expression] = STATE(1296), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1191] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_RBRACK] = ACTIONS(798), - [anon_sym_EQ] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(798), - [anon_sym_QMARK] = ACTIONS(5096), - [anon_sym_STAR_EQ] = ACTIONS(5099), - [anon_sym_SLASH_EQ] = ACTIONS(5099), - [anon_sym_PERCENT_EQ] = ACTIONS(5099), - [anon_sym_PLUS_EQ] = ACTIONS(5099), - [anon_sym_DASH_EQ] = ACTIONS(5099), - [anon_sym_LT_LT_EQ] = ACTIONS(5099), - [anon_sym_GT_GT_EQ] = ACTIONS(5099), - [anon_sym_AMP_EQ] = ACTIONS(5099), - [anon_sym_CARET_EQ] = ACTIONS(5099), - [anon_sym_PIPE_EQ] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5105), - [anon_sym_AMP_AMP] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5108), - [anon_sym_BANG_EQ] = ACTIONS(5108), - [anon_sym_LT] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_LT_EQ] = ACTIONS(5114), - [anon_sym_GT_EQ] = ACTIONS(5114), - [anon_sym_LT_LT] = ACTIONS(5117), - [anon_sym_GT_GT] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(5120), - [anon_sym_DASH] = ACTIONS(5120), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5123), - [anon_sym_PLUS_PLUS] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), + [sym__expression] = STATE(1297), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1192] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(5132), - [anon_sym_LBRACK] = ACTIONS(5135), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(5138), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(5141), - [anon_sym_STAR_EQ] = ACTIONS(5144), - [anon_sym_SLASH_EQ] = ACTIONS(5144), - [anon_sym_PERCENT_EQ] = ACTIONS(5144), - [anon_sym_PLUS_EQ] = ACTIONS(5144), - [anon_sym_DASH_EQ] = ACTIONS(5144), - [anon_sym_LT_LT_EQ] = ACTIONS(5144), - [anon_sym_GT_GT_EQ] = ACTIONS(5144), - [anon_sym_AMP_EQ] = ACTIONS(5144), - [anon_sym_CARET_EQ] = ACTIONS(5144), - [anon_sym_PIPE_EQ] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5150), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym_EQ_EQ] = ACTIONS(5153), - [anon_sym_BANG_EQ] = ACTIONS(5153), - [anon_sym_LT] = ACTIONS(5156), - [anon_sym_GT] = ACTIONS(5156), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5159), - [anon_sym_LT_LT] = ACTIONS(5162), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5132), - [anon_sym_PERCENT] = ACTIONS(5132), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_DASH_GT] = ACTIONS(5171), + [sym__expression] = STATE(1298), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1193] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5174), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_COLON] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_STAR_EQ] = ACTIONS(5189), - [anon_sym_SLASH_EQ] = ACTIONS(5189), - [anon_sym_PERCENT_EQ] = ACTIONS(5189), - [anon_sym_PLUS_EQ] = ACTIONS(5189), - [anon_sym_DASH_EQ] = ACTIONS(5189), - [anon_sym_LT_LT_EQ] = ACTIONS(5189), - [anon_sym_GT_GT_EQ] = ACTIONS(5189), - [anon_sym_AMP_EQ] = ACTIONS(5189), - [anon_sym_CARET_EQ] = ACTIONS(5189), - [anon_sym_PIPE_EQ] = ACTIONS(5189), - [anon_sym_AMP] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE] = ACTIONS(5192), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_EQ_EQ] = ACTIONS(5198), - [anon_sym_BANG_EQ] = ACTIONS(5198), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_LT_EQ] = ACTIONS(5204), - [anon_sym_GT_EQ] = ACTIONS(5204), - [anon_sym_LT_LT] = ACTIONS(5207), - [anon_sym_GT_GT] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5210), - [anon_sym_DASH] = ACTIONS(5210), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_DASH_DASH] = ACTIONS(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5213), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), + [sym__expression] = STATE(1299), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1194] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(5222), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(5228), - [anon_sym_COLON] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(5231), - [anon_sym_STAR_EQ] = ACTIONS(5234), - [anon_sym_SLASH_EQ] = ACTIONS(5234), - [anon_sym_PERCENT_EQ] = ACTIONS(5234), - [anon_sym_PLUS_EQ] = ACTIONS(5234), - [anon_sym_DASH_EQ] = ACTIONS(5234), - [anon_sym_LT_LT_EQ] = ACTIONS(5234), - [anon_sym_GT_GT_EQ] = ACTIONS(5234), - [anon_sym_AMP_EQ] = ACTIONS(5234), - [anon_sym_CARET_EQ] = ACTIONS(5234), - [anon_sym_PIPE_EQ] = ACTIONS(5234), - [anon_sym_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5240), - [anon_sym_AMP_AMP] = ACTIONS(5240), - [anon_sym_PIPE] = ACTIONS(5237), - [anon_sym_CARET] = ACTIONS(5237), - [anon_sym_EQ_EQ] = ACTIONS(5243), - [anon_sym_BANG_EQ] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5246), - [anon_sym_GT] = ACTIONS(5246), - [anon_sym_LT_EQ] = ACTIONS(5249), - [anon_sym_GT_EQ] = ACTIONS(5249), - [anon_sym_LT_LT] = ACTIONS(5252), - [anon_sym_GT_GT] = ACTIONS(5252), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5222), - [anon_sym_PERCENT] = ACTIONS(5222), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DASH_GT] = ACTIONS(5261), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(121), }, [1195] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_COMMA] = ACTIONS(5268), - [anon_sym_RPAREN] = ACTIONS(5268), - [anon_sym_SEMI] = ACTIONS(5268), - [anon_sym_RBRACE] = ACTIONS(5268), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5268), - [anon_sym_EQ] = ACTIONS(5279), - [anon_sym_COLON] = ACTIONS(5268), - [anon_sym_QMARK] = ACTIONS(5283), - [anon_sym_STAR_EQ] = ACTIONS(5287), - [anon_sym_SLASH_EQ] = ACTIONS(5287), - [anon_sym_PERCENT_EQ] = ACTIONS(5287), - [anon_sym_PLUS_EQ] = ACTIONS(5287), - [anon_sym_DASH_EQ] = ACTIONS(5287), - [anon_sym_LT_LT_EQ] = ACTIONS(5287), - [anon_sym_GT_GT_EQ] = ACTIONS(5287), - [anon_sym_AMP_EQ] = ACTIONS(5287), - [anon_sym_CARET_EQ] = ACTIONS(5287), - [anon_sym_PIPE_EQ] = ACTIONS(5287), - [anon_sym_AMP] = ACTIONS(5291), - [anon_sym_PIPE_PIPE] = ACTIONS(5295), - [anon_sym_AMP_AMP] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym_EQ_EQ] = ACTIONS(5299), - [anon_sym_BANG_EQ] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5303), - [anon_sym_GT] = ACTIONS(5303), - [anon_sym_LT_EQ] = ACTIONS(5307), - [anon_sym_GT_EQ] = ACTIONS(5307), - [anon_sym_LT_LT] = ACTIONS(5311), - [anon_sym_GT_GT] = ACTIONS(5311), - [anon_sym_PLUS] = ACTIONS(5315), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_PERCENT] = ACTIONS(5271), - [anon_sym_DASH_DASH] = ACTIONS(5319), - [anon_sym_PLUS_PLUS] = ACTIONS(5319), - [anon_sym_DOT] = ACTIONS(5323), - [anon_sym_DASH_GT] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(6062), + [anon_sym_RPAREN] = ACTIONS(6062), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_LBRACK] = ACTIONS(206), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1196] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5330), - [anon_sym_RPAREN] = ACTIONS(5330), - [anon_sym_SEMI] = ACTIONS(5330), - [anon_sym_RBRACE] = ACTIONS(5330), - [anon_sym_STAR] = ACTIONS(5332), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5330), - [anon_sym_EQ] = ACTIONS(5338), - [anon_sym_COLON] = ACTIONS(5330), - [anon_sym_QMARK] = ACTIONS(5341), - [anon_sym_STAR_EQ] = ACTIONS(5344), - [anon_sym_SLASH_EQ] = ACTIONS(5344), - [anon_sym_PERCENT_EQ] = ACTIONS(5344), - [anon_sym_PLUS_EQ] = ACTIONS(5344), - [anon_sym_DASH_EQ] = ACTIONS(5344), - [anon_sym_LT_LT_EQ] = ACTIONS(5344), - [anon_sym_GT_GT_EQ] = ACTIONS(5344), - [anon_sym_AMP_EQ] = ACTIONS(5344), - [anon_sym_CARET_EQ] = ACTIONS(5344), - [anon_sym_PIPE_EQ] = ACTIONS(5344), - [anon_sym_AMP] = ACTIONS(5347), - [anon_sym_PIPE_PIPE] = ACTIONS(5350), - [anon_sym_AMP_AMP] = ACTIONS(5350), - [anon_sym_PIPE] = ACTIONS(5347), - [anon_sym_CARET] = ACTIONS(5347), - [anon_sym_EQ_EQ] = ACTIONS(5353), - [anon_sym_BANG_EQ] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5356), - [anon_sym_GT] = ACTIONS(5356), - [anon_sym_LT_EQ] = ACTIONS(5359), - [anon_sym_GT_EQ] = ACTIONS(5359), - [anon_sym_LT_LT] = ACTIONS(5362), - [anon_sym_GT_GT] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5365), - [anon_sym_SLASH] = ACTIONS(5332), - [anon_sym_PERCENT] = ACTIONS(5332), - [anon_sym_DASH_DASH] = ACTIONS(5368), - [anon_sym_PLUS_PLUS] = ACTIONS(5368), - [anon_sym_DOT] = ACTIONS(5371), - [anon_sym_DASH_GT] = ACTIONS(5371), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(384), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4337), [sym_comment] = ACTIONS(121), }, [1197] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5374), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5380), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_QMARK] = ACTIONS(5386), - [anon_sym_STAR_EQ] = ACTIONS(5389), - [anon_sym_SLASH_EQ] = ACTIONS(5389), - [anon_sym_PERCENT_EQ] = ACTIONS(5389), - [anon_sym_PLUS_EQ] = ACTIONS(5389), - [anon_sym_DASH_EQ] = ACTIONS(5389), - [anon_sym_LT_LT_EQ] = ACTIONS(5389), - [anon_sym_GT_GT_EQ] = ACTIONS(5389), - [anon_sym_AMP_EQ] = ACTIONS(5389), - [anon_sym_CARET_EQ] = ACTIONS(5389), - [anon_sym_PIPE_EQ] = ACTIONS(5389), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym_PIPE_PIPE] = ACTIONS(5395), - [anon_sym_AMP_AMP] = ACTIONS(5395), - [anon_sym_PIPE] = ACTIONS(5392), - [anon_sym_CARET] = ACTIONS(5392), - [anon_sym_EQ_EQ] = ACTIONS(5398), - [anon_sym_BANG_EQ] = ACTIONS(5398), - [anon_sym_LT] = ACTIONS(5401), - [anon_sym_GT] = ACTIONS(5401), - [anon_sym_LT_EQ] = ACTIONS(5404), - [anon_sym_GT_EQ] = ACTIONS(5404), - [anon_sym_LT_LT] = ACTIONS(5407), - [anon_sym_GT_GT] = ACTIONS(5407), - [anon_sym_PLUS] = ACTIONS(5410), - [anon_sym_DASH] = ACTIONS(5410), - [anon_sym_SLASH] = ACTIONS(5377), - [anon_sym_PERCENT] = ACTIONS(5377), - [anon_sym_DASH_DASH] = ACTIONS(5413), - [anon_sym_PLUS_PLUS] = ACTIONS(5413), - [anon_sym_DOT] = ACTIONS(5416), - [anon_sym_DASH_GT] = ACTIONS(5416), + [sym__declarator] = STATE(84), + [sym__field_declarator] = STATE(205), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym__expression] = STATE(246), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4254), [sym_comment] = ACTIONS(121), }, [1198] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1331), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(4260), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1199] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(5422), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_RBRACK] = ACTIONS(806), - [anon_sym_EQ] = ACTIONS(5428), - [anon_sym_COLON] = ACTIONS(806), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_STAR_EQ] = ACTIONS(5434), - [anon_sym_SLASH_EQ] = ACTIONS(5434), - [anon_sym_PERCENT_EQ] = ACTIONS(5434), - [anon_sym_PLUS_EQ] = ACTIONS(5434), - [anon_sym_DASH_EQ] = ACTIONS(5434), - [anon_sym_LT_LT_EQ] = ACTIONS(5434), - [anon_sym_GT_GT_EQ] = ACTIONS(5434), - [anon_sym_AMP_EQ] = ACTIONS(5434), - [anon_sym_CARET_EQ] = ACTIONS(5434), - [anon_sym_PIPE_EQ] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5437), - [anon_sym_PIPE_PIPE] = ACTIONS(5440), - [anon_sym_AMP_AMP] = ACTIONS(5440), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_CARET] = ACTIONS(5437), - [anon_sym_EQ_EQ] = ACTIONS(5443), - [anon_sym_BANG_EQ] = ACTIONS(5443), - [anon_sym_LT] = ACTIONS(5446), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_LT_EQ] = ACTIONS(5449), - [anon_sym_GT_EQ] = ACTIONS(5449), - [anon_sym_LT_LT] = ACTIONS(5452), - [anon_sym_GT_GT] = ACTIONS(5452), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5422), - [anon_sym_PERCENT] = ACTIONS(5422), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5461), - [anon_sym_DASH_GT] = ACTIONS(5461), + [anon_sym_RPAREN] = ACTIONS(6065), [sym_comment] = ACTIONS(121), }, [1200] = { - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(5464), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(5467), - [anon_sym_COLON] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DOT] = ACTIONS(5464), - [anon_sym_DASH_GT] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4641), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1201] = { - [sym__declarator] = STATE(62), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1333), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(5470), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(6070), + [anon_sym_QMARK] = ACTIONS(6073), + [anon_sym_STAR_EQ] = ACTIONS(6076), + [anon_sym_SLASH_EQ] = ACTIONS(6076), + [anon_sym_PERCENT_EQ] = ACTIONS(6076), + [anon_sym_PLUS_EQ] = ACTIONS(6076), + [anon_sym_DASH_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_EQ] = ACTIONS(6076), + [anon_sym_GT_GT_EQ] = ACTIONS(6076), + [anon_sym_AMP_EQ] = ACTIONS(6076), + [anon_sym_CARET_EQ] = ACTIONS(6076), + [anon_sym_PIPE_EQ] = ACTIONS(6076), + [anon_sym_AMP] = ACTIONS(6079), + [anon_sym_PIPE_PIPE] = ACTIONS(6082), + [anon_sym_AMP_AMP] = ACTIONS(6082), + [anon_sym_PIPE] = ACTIONS(6079), + [anon_sym_CARET] = ACTIONS(6079), + [anon_sym_EQ_EQ] = ACTIONS(6085), + [anon_sym_BANG_EQ] = ACTIONS(6085), + [anon_sym_LT] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6091), + [anon_sym_GT_EQ] = ACTIONS(6091), + [anon_sym_LT_LT] = ACTIONS(6094), + [anon_sym_GT_GT] = ACTIONS(6094), + [anon_sym_PLUS] = ACTIONS(6067), + [anon_sym_DASH] = ACTIONS(6067), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_PERCENT] = ACTIONS(6067), + [anon_sym_DASH_DASH] = ACTIONS(5918), + [anon_sym_PLUS_PLUS] = ACTIONS(5918), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DASH_GT] = ACTIONS(5921), [sym_comment] = ACTIONS(121), }, [1202] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(5472), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(5472), - [anon_sym_LPAREN] = ACTIONS(5475), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(5472), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(5472), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(5472), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(5472), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(5472), - [sym_preproc_directive] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5475), - [anon_sym_extern] = ACTIONS(5472), - [anon_sym_LBRACE] = ACTIONS(5475), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(5475), - [anon_sym_typedef] = ACTIONS(5472), - [anon_sym_static] = ACTIONS(5472), - [anon_sym_auto] = ACTIONS(5472), - [anon_sym_register] = ACTIONS(5472), - [anon_sym_const] = ACTIONS(5472), - [anon_sym_restrict] = ACTIONS(5472), - [anon_sym_volatile] = ACTIONS(5472), - [sym_function_specifier] = ACTIONS(5472), - [anon_sym_unsigned] = ACTIONS(5472), - [anon_sym_long] = ACTIONS(5472), - [anon_sym_short] = ACTIONS(5472), - [anon_sym_enum] = ACTIONS(5472), - [anon_sym_struct] = ACTIONS(5472), - [anon_sym_union] = ACTIONS(5472), - [anon_sym_if] = ACTIONS(5472), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_switch] = ACTIONS(5472), - [anon_sym_case] = ACTIONS(5472), - [anon_sym_default] = ACTIONS(5472), - [anon_sym_while] = ACTIONS(5472), - [anon_sym_do] = ACTIONS(5472), - [anon_sym_for] = ACTIONS(5472), - [anon_sym_return] = ACTIONS(5472), - [anon_sym_break] = ACTIONS(5472), - [anon_sym_continue] = ACTIONS(5472), - [anon_sym_goto] = ACTIONS(5472), - [anon_sym_AMP] = ACTIONS(5475), - [anon_sym_BANG] = ACTIONS(5475), - [anon_sym_TILDE] = ACTIONS(5475), - [anon_sym_PLUS] = ACTIONS(5472), - [anon_sym_DASH] = ACTIONS(5472), - [anon_sym_DASH_DASH] = ACTIONS(5475), - [anon_sym_PLUS_PLUS] = ACTIONS(5475), - [anon_sym_sizeof] = ACTIONS(5472), - [sym_number_literal] = ACTIONS(5472), - [sym_char_literal] = ACTIONS(5472), - [sym_string_literal] = ACTIONS(5475), - [sym_identifier] = ACTIONS(5478), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1199), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [1203] = { - [sym__top_level_item] = STATE(39), - [sym__preproc_statement] = STATE(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(40), - [sym_declaration] = STATE(40), - [sym__declaration_specifiers] = STATE(1160), - [sym_linkage_specification] = STATE(40), - [sym__declarator] = STATE(43), - [sym__field_declarator] = STATE(244), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_field_declaration] = STATE(248), - [sym_enumerator] = STATE(235), - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_translation_unit_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_field_declaration_list_repeat1] = STATE(249), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(125), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_COMMA] = ACTIONS(620), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(133), - [sym_preproc_directive] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5485), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_if] = ACTIONS(245), - [anon_sym_switch] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_default] = ACTIONS(251), - [anon_sym_while] = ACTIONS(253), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(255), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(5487), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(6097), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(6100), + [anon_sym_QMARK] = ACTIONS(6103), + [anon_sym_STAR_EQ] = ACTIONS(6106), + [anon_sym_SLASH_EQ] = ACTIONS(6106), + [anon_sym_PERCENT_EQ] = ACTIONS(6106), + [anon_sym_PLUS_EQ] = ACTIONS(6106), + [anon_sym_DASH_EQ] = ACTIONS(6106), + [anon_sym_LT_LT_EQ] = ACTIONS(6106), + [anon_sym_GT_GT_EQ] = ACTIONS(6106), + [anon_sym_AMP_EQ] = ACTIONS(6106), + [anon_sym_CARET_EQ] = ACTIONS(6106), + [anon_sym_PIPE_EQ] = ACTIONS(6106), + [anon_sym_AMP] = ACTIONS(6109), + [anon_sym_PIPE_PIPE] = ACTIONS(6112), + [anon_sym_AMP_AMP] = ACTIONS(6112), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_CARET] = ACTIONS(6109), + [anon_sym_EQ_EQ] = ACTIONS(6115), + [anon_sym_BANG_EQ] = ACTIONS(6115), + [anon_sym_LT] = ACTIONS(6118), + [anon_sym_GT] = ACTIONS(6118), + [anon_sym_LT_EQ] = ACTIONS(6121), + [anon_sym_GT_EQ] = ACTIONS(6121), + [anon_sym_LT_LT] = ACTIONS(6124), + [anon_sym_GT_GT] = ACTIONS(6124), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_PERCENT] = ACTIONS(6097), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), [sym_comment] = ACTIONS(121), }, [1204] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_QMARK] = ACTIONS(6133), + [anon_sym_STAR_EQ] = ACTIONS(6136), + [anon_sym_SLASH_EQ] = ACTIONS(6136), + [anon_sym_PERCENT_EQ] = ACTIONS(6136), + [anon_sym_PLUS_EQ] = ACTIONS(6136), + [anon_sym_DASH_EQ] = ACTIONS(6136), + [anon_sym_LT_LT_EQ] = ACTIONS(6136), + [anon_sym_GT_GT_EQ] = ACTIONS(6136), + [anon_sym_AMP_EQ] = ACTIONS(6136), + [anon_sym_CARET_EQ] = ACTIONS(6136), + [anon_sym_PIPE_EQ] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6139), + [anon_sym_PIPE_PIPE] = ACTIONS(6142), + [anon_sym_AMP_AMP] = ACTIONS(6142), + [anon_sym_PIPE] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6139), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_LT] = ACTIONS(6148), + [anon_sym_GT] = ACTIONS(6148), + [anon_sym_LT_EQ] = ACTIONS(6151), + [anon_sym_GT_EQ] = ACTIONS(6151), + [anon_sym_LT_LT] = ACTIONS(6154), + [anon_sym_GT_GT] = ACTIONS(6154), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_PERCENT] = ACTIONS(6127), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_DASH_GT] = ACTIONS(5150), [sym_comment] = ACTIONS(121), }, [1205] = { - [anon_sym_LPAREN] = ACTIONS(5489), - [anon_sym_COMMA] = ACTIONS(5489), - [anon_sym_RPAREN] = ACTIONS(5489), - [anon_sym_SEMI] = ACTIONS(5489), - [anon_sym_extern] = ACTIONS(5492), - [anon_sym_STAR] = ACTIONS(5489), - [anon_sym_LBRACK] = ACTIONS(5489), - [anon_sym_RBRACK] = ACTIONS(5489), - [anon_sym_typedef] = ACTIONS(5492), - [anon_sym_static] = ACTIONS(5492), - [anon_sym_auto] = ACTIONS(5492), - [anon_sym_register] = ACTIONS(5492), - [anon_sym_const] = ACTIONS(5492), - [anon_sym_restrict] = ACTIONS(5492), - [anon_sym_volatile] = ACTIONS(5492), - [sym_function_specifier] = ACTIONS(5492), - [anon_sym_COLON] = ACTIONS(5489), - [anon_sym_AMP] = ACTIONS(5489), - [anon_sym_BANG] = ACTIONS(5489), - [anon_sym_TILDE] = ACTIONS(5489), - [anon_sym_PLUS] = ACTIONS(5492), - [anon_sym_DASH] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5489), - [anon_sym_PLUS_PLUS] = ACTIONS(5489), - [anon_sym_sizeof] = ACTIONS(5492), - [sym_number_literal] = ACTIONS(5492), - [sym_char_literal] = ACTIONS(5492), - [sym_string_literal] = ACTIONS(5489), - [sym_identifier] = ACTIONS(5495), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(6157), + [anon_sym_LBRACK] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(6160), + [anon_sym_QMARK] = ACTIONS(6163), + [anon_sym_STAR_EQ] = ACTIONS(6166), + [anon_sym_SLASH_EQ] = ACTIONS(6166), + [anon_sym_PERCENT_EQ] = ACTIONS(6166), + [anon_sym_PLUS_EQ] = ACTIONS(6166), + [anon_sym_DASH_EQ] = ACTIONS(6166), + [anon_sym_LT_LT_EQ] = ACTIONS(6166), + [anon_sym_GT_GT_EQ] = ACTIONS(6166), + [anon_sym_AMP_EQ] = ACTIONS(6166), + [anon_sym_CARET_EQ] = ACTIONS(6166), + [anon_sym_PIPE_EQ] = ACTIONS(6166), + [anon_sym_AMP] = ACTIONS(6169), + [anon_sym_PIPE_PIPE] = ACTIONS(6172), + [anon_sym_AMP_AMP] = ACTIONS(6172), + [anon_sym_PIPE] = ACTIONS(6169), + [anon_sym_CARET] = ACTIONS(6169), + [anon_sym_EQ_EQ] = ACTIONS(6175), + [anon_sym_BANG_EQ] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6178), + [anon_sym_GT] = ACTIONS(6178), + [anon_sym_LT_EQ] = ACTIONS(6181), + [anon_sym_GT_EQ] = ACTIONS(6181), + [anon_sym_LT_LT] = ACTIONS(6184), + [anon_sym_GT_GT] = ACTIONS(6184), + [anon_sym_PLUS] = ACTIONS(6157), + [anon_sym_DASH] = ACTIONS(6157), + [anon_sym_SLASH] = ACTIONS(6157), + [anon_sym_PERCENT] = ACTIONS(6157), + [anon_sym_DASH_DASH] = ACTIONS(6020), + [anon_sym_PLUS_PLUS] = ACTIONS(6020), + [anon_sym_DOT] = ACTIONS(6023), + [anon_sym_DASH_GT] = ACTIONS(6023), [sym_comment] = ACTIONS(121), }, [1206] = { - [ts_builtin_sym_end] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(5503), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(5503), - [anon_sym_LPAREN] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(5503), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(5503), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(5503), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(5503), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(5503), - [sym_preproc_directive] = ACTIONS(5508), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym_extern] = ACTIONS(5503), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5498), - [anon_sym_typedef] = ACTIONS(5503), - [anon_sym_static] = ACTIONS(5503), - [anon_sym_auto] = ACTIONS(5503), - [anon_sym_register] = ACTIONS(5503), - [anon_sym_const] = ACTIONS(5503), - [anon_sym_restrict] = ACTIONS(5503), - [anon_sym_volatile] = ACTIONS(5503), - [sym_function_specifier] = ACTIONS(5503), - [anon_sym_unsigned] = ACTIONS(5503), - [anon_sym_long] = ACTIONS(5503), - [anon_sym_short] = ACTIONS(5503), - [anon_sym_enum] = ACTIONS(5503), - [anon_sym_struct] = ACTIONS(5503), - [anon_sym_union] = ACTIONS(5503), - [anon_sym_if] = ACTIONS(5503), - [anon_sym_switch] = ACTIONS(5503), - [anon_sym_case] = ACTIONS(5503), - [anon_sym_default] = ACTIONS(5503), - [anon_sym_while] = ACTIONS(5503), - [anon_sym_do] = ACTIONS(5503), - [anon_sym_for] = ACTIONS(5503), - [anon_sym_return] = ACTIONS(5503), - [anon_sym_break] = ACTIONS(5503), - [anon_sym_continue] = ACTIONS(5503), - [anon_sym_goto] = ACTIONS(5503), - [anon_sym_AMP] = ACTIONS(5498), - [anon_sym_BANG] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(5503), - [anon_sym_DASH] = ACTIONS(5503), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_sizeof] = ACTIONS(5503), - [sym_number_literal] = ACTIONS(5503), - [sym_char_literal] = ACTIONS(5503), - [sym_string_literal] = ACTIONS(5498), - [sym_identifier] = ACTIONS(5508), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1301), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [1207] = { - [sym__expression] = STATE(1339), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5443), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(5449), + [anon_sym_EQ] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6193), + [anon_sym_STAR_EQ] = ACTIONS(6196), + [anon_sym_SLASH_EQ] = ACTIONS(6196), + [anon_sym_PERCENT_EQ] = ACTIONS(6196), + [anon_sym_PLUS_EQ] = ACTIONS(6196), + [anon_sym_DASH_EQ] = ACTIONS(6196), + [anon_sym_LT_LT_EQ] = ACTIONS(6196), + [anon_sym_GT_GT_EQ] = ACTIONS(6196), + [anon_sym_AMP_EQ] = ACTIONS(6196), + [anon_sym_CARET_EQ] = ACTIONS(6196), + [anon_sym_PIPE_EQ] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6199), + [anon_sym_PIPE_PIPE] = ACTIONS(6202), + [anon_sym_AMP_AMP] = ACTIONS(6202), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_CARET] = ACTIONS(6199), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6211), + [anon_sym_GT_EQ] = ACTIONS(6211), + [anon_sym_LT_LT] = ACTIONS(6214), + [anon_sym_GT_GT] = ACTIONS(6214), + [anon_sym_PLUS] = ACTIONS(6187), + [anon_sym_DASH] = ACTIONS(6187), + [anon_sym_SLASH] = ACTIONS(6187), + [anon_sym_PERCENT] = ACTIONS(6187), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5485), + [anon_sym_DASH_GT] = ACTIONS(5485), [sym_comment] = ACTIONS(121), }, [1208] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(5515), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1302), + [sym_comma_expression] = STATE(464), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1209] = { - [sym__declaration_specifiers] = STATE(322), - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym__abstract_declarator] = STATE(359), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1116), - [sym__type_specifier] = STATE(1117), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_list] = STATE(187), - [sym_parameter_declaration] = STATE(320), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(502), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4206), + [sym__expression] = STATE(1303), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1210] = { - [ts_builtin_sym_end] = ACTIONS(824), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(5517), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(5517), - [anon_sym_extern] = ACTIONS(5520), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(5517), - [anon_sym_STAR] = ACTIONS(5517), - [anon_sym_typedef] = ACTIONS(5520), - [anon_sym_static] = ACTIONS(5520), - [anon_sym_auto] = ACTIONS(5520), - [anon_sym_register] = ACTIONS(5520), - [anon_sym_const] = ACTIONS(5520), - [anon_sym_restrict] = ACTIONS(5520), - [anon_sym_volatile] = ACTIONS(5520), - [sym_function_specifier] = ACTIONS(5520), - [anon_sym_unsigned] = ACTIONS(5520), - [anon_sym_long] = ACTIONS(5520), - [anon_sym_short] = ACTIONS(5520), - [anon_sym_enum] = ACTIONS(5520), - [anon_sym_struct] = ACTIONS(5520), - [anon_sym_union] = ACTIONS(5520), - [anon_sym_COLON] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_case] = ACTIONS(826), - [anon_sym_default] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_goto] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_sizeof] = ACTIONS(826), - [sym_number_literal] = ACTIONS(826), - [sym_char_literal] = ACTIONS(826), - [sym_string_literal] = ACTIONS(824), - [sym_identifier] = ACTIONS(5523), + [sym__expression] = STATE(1304), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1211] = { - [sym__declarator] = STATE(1166), - [sym__field_declarator] = STATE(418), - [sym__abstract_declarator] = STATE(360), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(5526), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_sizeof] = ACTIONS(854), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3470), + [sym__expression] = STATE(1305), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1212] = { - [anon_sym_LPAREN] = ACTIONS(5529), - [anon_sym_COMMA] = ACTIONS(5529), - [anon_sym_RPAREN] = ACTIONS(5529), - [anon_sym_SEMI] = ACTIONS(5534), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_COLON] = ACTIONS(1919), + [sym__expression] = STATE(1306), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1213] = { - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__expression] = STATE(1307), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1214] = { - [sym_compound_statement] = STATE(318), - [sym_parameter_list] = STATE(145), - [aux_sym_declaration_repeat1] = STATE(319), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(5540), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(834), + [sym__expression] = STATE(1308), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1215] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_RBRACK] = ACTIONS(5543), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1309), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1216] = { - [ts_builtin_sym_end] = ACTIONS(5545), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(5548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(5548), - [anon_sym_LPAREN] = ACTIONS(5545), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(5548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(5548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(5548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(5548), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5551), - [anon_sym_SEMI] = ACTIONS(5545), - [anon_sym_extern] = ACTIONS(5548), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_RBRACE] = ACTIONS(5545), - [anon_sym_STAR] = ACTIONS(5545), - [anon_sym_typedef] = ACTIONS(5548), - [anon_sym_static] = ACTIONS(5548), - [anon_sym_auto] = ACTIONS(5548), - [anon_sym_register] = ACTIONS(5548), - [anon_sym_const] = ACTIONS(5548), - [anon_sym_restrict] = ACTIONS(5548), - [anon_sym_volatile] = ACTIONS(5548), - [sym_function_specifier] = ACTIONS(5548), - [anon_sym_unsigned] = ACTIONS(5548), - [anon_sym_long] = ACTIONS(5548), - [anon_sym_short] = ACTIONS(5548), - [anon_sym_enum] = ACTIONS(5548), - [anon_sym_struct] = ACTIONS(5548), - [anon_sym_union] = ACTIONS(5548), - [anon_sym_if] = ACTIONS(5548), - [anon_sym_switch] = ACTIONS(5548), - [anon_sym_case] = ACTIONS(5548), - [anon_sym_default] = ACTIONS(5548), - [anon_sym_while] = ACTIONS(5548), - [anon_sym_do] = ACTIONS(5548), - [anon_sym_for] = ACTIONS(5548), - [anon_sym_return] = ACTIONS(5548), - [anon_sym_break] = ACTIONS(5548), - [anon_sym_continue] = ACTIONS(5548), - [anon_sym_goto] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5545), - [anon_sym_BANG] = ACTIONS(5545), - [anon_sym_TILDE] = ACTIONS(5545), - [anon_sym_PLUS] = ACTIONS(5548), - [anon_sym_DASH] = ACTIONS(5548), - [anon_sym_DASH_DASH] = ACTIONS(5545), - [anon_sym_PLUS_PLUS] = ACTIONS(5545), - [anon_sym_sizeof] = ACTIONS(5548), - [sym_number_literal] = ACTIONS(5548), - [sym_char_literal] = ACTIONS(5548), - [sym_string_literal] = ACTIONS(5545), - [sym_identifier] = ACTIONS(5551), + [sym__expression] = STATE(1310), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1217] = { - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5557), - [anon_sym_RBRACE] = ACTIONS(5554), - [anon_sym_STAR] = ACTIONS(5554), - [anon_sym_typedef] = ACTIONS(5557), - [anon_sym_static] = ACTIONS(5557), - [anon_sym_auto] = ACTIONS(5557), - [anon_sym_register] = ACTIONS(5557), - [anon_sym_const] = ACTIONS(5557), - [anon_sym_restrict] = ACTIONS(5557), - [anon_sym_volatile] = ACTIONS(5557), - [sym_function_specifier] = ACTIONS(5557), - [anon_sym_unsigned] = ACTIONS(5557), - [anon_sym_long] = ACTIONS(5557), - [anon_sym_short] = ACTIONS(5557), - [anon_sym_enum] = ACTIONS(5557), - [anon_sym_struct] = ACTIONS(5557), - [anon_sym_union] = ACTIONS(5557), - [anon_sym_COLON] = ACTIONS(5554), - [sym_identifier] = ACTIONS(5560), + [anon_sym_RPAREN] = ACTIONS(6217), [sym_comment] = ACTIONS(121), }, [1218] = { - [sym__expression] = STATE(1342), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(6219), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [sym__pound_include] = ACTIONS(785), + [sym__pound_define] = ACTIONS(785), + [sym__pound_if] = ACTIONS(785), + [sym__pound_ifdef] = ACTIONS(785), + [sym__pound_endif] = ACTIONS(785), + [sym__pound_else] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(6219), + [anon_sym_extern] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_RBRACK] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(785), + [anon_sym_static] = ACTIONS(785), + [anon_sym_auto] = ACTIONS(785), + [anon_sym_register] = ACTIONS(785), + [anon_sym_const] = ACTIONS(785), + [anon_sym_restrict] = ACTIONS(785), + [anon_sym_volatile] = ACTIONS(785), + [sym_function_specifier] = ACTIONS(785), + [anon_sym_unsigned] = ACTIONS(785), + [anon_sym_long] = ACTIONS(785), + [anon_sym_short] = ACTIONS(785), + [anon_sym_enum] = ACTIONS(785), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_union] = ACTIONS(785), + [anon_sym_COLON] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_return] = ACTIONS(785), + [anon_sym_break] = ACTIONS(785), + [anon_sym_continue] = ACTIONS(785), + [anon_sym_goto] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(6222), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6222), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(6219), + [anon_sym_PLUS_PLUS] = ACTIONS(6219), + [anon_sym_sizeof] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_DASH_GT] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(785), + [sym_string_literal] = ACTIONS(783), + [sym_identifier] = ACTIONS(787), [sym_comment] = ACTIONS(121), }, [1219] = { - [sym_parameter_list] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(5563), - [anon_sym_LBRACK] = ACTIONS(947), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(6228), + [anon_sym_COLON] = ACTIONS(1181), + [anon_sym_QMARK] = ACTIONS(6231), + [anon_sym_STAR_EQ] = ACTIONS(6234), + [anon_sym_SLASH_EQ] = ACTIONS(6234), + [anon_sym_PERCENT_EQ] = ACTIONS(6234), + [anon_sym_PLUS_EQ] = ACTIONS(6234), + [anon_sym_DASH_EQ] = ACTIONS(6234), + [anon_sym_LT_LT_EQ] = ACTIONS(6234), + [anon_sym_GT_GT_EQ] = ACTIONS(6234), + [anon_sym_AMP_EQ] = ACTIONS(6234), + [anon_sym_CARET_EQ] = ACTIONS(6234), + [anon_sym_PIPE_EQ] = ACTIONS(6234), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6240), + [anon_sym_AMP_AMP] = ACTIONS(6240), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6243), + [anon_sym_BANG_EQ] = ACTIONS(6243), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_LT_EQ] = ACTIONS(6249), + [anon_sym_GT_EQ] = ACTIONS(6249), + [anon_sym_LT_LT] = ACTIONS(6252), + [anon_sym_GT_GT] = ACTIONS(6252), + [anon_sym_PLUS] = ACTIONS(6255), + [anon_sym_DASH] = ACTIONS(6255), + [anon_sym_SLASH] = ACTIONS(6225), + [anon_sym_PERCENT] = ACTIONS(6225), + [anon_sym_DASH_DASH] = ACTIONS(5918), + [anon_sym_PLUS_PLUS] = ACTIONS(5918), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DASH_GT] = ACTIONS(5921), [sym_comment] = ACTIONS(121), }, [1220] = { - [sym_storage_class_specifier] = STATE(167), - [sym_type_qualifier] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym_COMMA] = ACTIONS(4184), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_RBRACK] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(4184), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_BANG] = ACTIONS(4184), - [anon_sym_TILDE] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4184), - [anon_sym_PLUS_PLUS] = ACTIONS(4184), - [anon_sym_sizeof] = ACTIONS(4187), - [sym_number_literal] = ACTIONS(4187), - [sym_char_literal] = ACTIONS(4187), - [sym_string_literal] = ACTIONS(4184), - [sym_identifier] = ACTIONS(5566), + [sym__expression] = STATE(1312), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1221] = { - [sym__expression] = STATE(1343), - [sym_comma_expression] = STATE(336), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [ts_builtin_sym_end] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(1428), + [sym__pound_include] = ACTIONS(6258), + [sym__pound_define] = ACTIONS(6258), + [sym__pound_if] = ACTIONS(6258), + [sym__pound_ifdef] = ACTIONS(6258), + [sym__pound_endif] = ACTIONS(6258), + [sym__pound_else] = ACTIONS(6258), + [sym_preproc_directive] = ACTIONS(6261), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(6258), + [anon_sym_static] = ACTIONS(6258), + [anon_sym_auto] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [sym_function_specifier] = ACTIONS(6258), + [anon_sym_unsigned] = ACTIONS(6258), + [anon_sym_long] = ACTIONS(6258), + [anon_sym_short] = ACTIONS(6258), + [anon_sym_enum] = ACTIONS(6258), + [anon_sym_struct] = ACTIONS(6258), + [anon_sym_union] = ACTIONS(6258), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [sym_string_literal] = ACTIONS(1428), + [sym_identifier] = ACTIONS(6261), [sym_comment] = ACTIONS(121), }, [1222] = { - [sym_compound_statement] = STATE(1344), - [sym_labeled_statement] = STATE(1344), - [sym_expression_statement] = STATE(1344), - [sym_if_statement] = STATE(1344), - [sym_switch_statement] = STATE(1344), - [sym_case_statement] = STATE(1344), - [sym_while_statement] = STATE(1344), - [sym_do_statement] = STATE(1344), - [sym_for_statement] = STATE(1344), - [sym_return_statement] = STATE(1344), - [sym_break_statement] = STATE(1344), - [sym_continue_statement] = STATE(1344), - [sym_goto_statement] = STATE(1344), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(1953), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(5569), - [anon_sym_COMMA] = ACTIONS(5574), - [anon_sym_RPAREN] = ACTIONS(5574), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1955), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(5577), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(5582), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_STAR] = ACTIONS(5589), - [anon_sym_LBRACK] = ACTIONS(5574), - [anon_sym_RBRACK] = ACTIONS(5574), - [anon_sym_EQ] = ACTIONS(5594), - [anon_sym_typedef] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [sym_function_specifier] = ACTIONS(1955), - [anon_sym_unsigned] = ACTIONS(1955), - [anon_sym_long] = ACTIONS(1955), - [anon_sym_short] = ACTIONS(1955), - [anon_sym_enum] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_union] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(5574), - [anon_sym_if] = ACTIONS(5597), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_switch] = ACTIONS(5600), - [anon_sym_case] = ACTIONS(5603), - [anon_sym_default] = ACTIONS(5606), - [anon_sym_while] = ACTIONS(5609), - [anon_sym_do] = ACTIONS(5612), - [anon_sym_for] = ACTIONS(5615), - [anon_sym_return] = ACTIONS(5618), - [anon_sym_break] = ACTIONS(5621), - [anon_sym_continue] = ACTIONS(5624), - [anon_sym_goto] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5574), - [anon_sym_STAR_EQ] = ACTIONS(5574), - [anon_sym_SLASH_EQ] = ACTIONS(5574), - [anon_sym_PERCENT_EQ] = ACTIONS(5574), - [anon_sym_PLUS_EQ] = ACTIONS(5574), - [anon_sym_DASH_EQ] = ACTIONS(5574), - [anon_sym_LT_LT_EQ] = ACTIONS(5574), - [anon_sym_GT_GT_EQ] = ACTIONS(5574), - [anon_sym_AMP_EQ] = ACTIONS(5574), - [anon_sym_CARET_EQ] = ACTIONS(5574), - [anon_sym_PIPE_EQ] = ACTIONS(5574), - [anon_sym_AMP] = ACTIONS(5589), - [anon_sym_PIPE_PIPE] = ACTIONS(5574), - [anon_sym_AMP_AMP] = ACTIONS(5574), - [anon_sym_BANG] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5594), - [anon_sym_CARET] = ACTIONS(5594), - [anon_sym_TILDE] = ACTIONS(5633), - [anon_sym_EQ_EQ] = ACTIONS(5574), - [anon_sym_BANG_EQ] = ACTIONS(5574), - [anon_sym_LT] = ACTIONS(5594), - [anon_sym_GT] = ACTIONS(5594), - [anon_sym_LT_EQ] = ACTIONS(5574), - [anon_sym_GT_EQ] = ACTIONS(5574), - [anon_sym_LT_LT] = ACTIONS(5594), - [anon_sym_GT_GT] = ACTIONS(5594), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5594), - [anon_sym_PERCENT] = ACTIONS(5594), - [anon_sym_DASH_DASH] = ACTIONS(5641), - [anon_sym_PLUS_PLUS] = ACTIONS(5641), - [anon_sym_sizeof] = ACTIONS(5646), - [anon_sym_DOT] = ACTIONS(5574), - [anon_sym_DASH_GT] = ACTIONS(5574), - [sym_number_literal] = ACTIONS(5649), - [sym_char_literal] = ACTIONS(5649), - [sym_string_literal] = ACTIONS(5652), - [sym_identifier] = ACTIONS(5655), + [sym_preproc_include] = STATE(1077), + [sym_preproc_def] = STATE(1077), + [sym_preproc_function_def] = STATE(1077), + [sym_preproc_call] = STATE(1077), + [sym_preproc_if] = STATE(17), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_preproc_else] = STATE(58), + [sym_preproc_else_in_compound_statement] = STATE(411), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(1077), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(59), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(412), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(2516), + [sym__pound_ifdef] = ACTIONS(2518), + [sym__pound_endif] = ACTIONS(6267), + [sym__pound_else] = ACTIONS(4534), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), [sym_comment] = ACTIONS(121), }, [1223] = { - [sym__expression] = STATE(1346), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(5658), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(5661), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(5661), - [anon_sym_LPAREN] = ACTIONS(5664), - [anon_sym_RPAREN] = ACTIONS(5672), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(5661), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(5661), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(5661), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(5661), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(5661), - [sym_preproc_directive] = ACTIONS(5674), - [anon_sym_SEMI] = ACTIONS(5677), - [anon_sym_extern] = ACTIONS(5685), - [anon_sym_LBRACE] = ACTIONS(5658), - [anon_sym_RBRACE] = ACTIONS(5692), - [anon_sym_STAR] = ACTIONS(5699), - [anon_sym_typedef] = ACTIONS(5685), - [anon_sym_static] = ACTIONS(5685), - [anon_sym_auto] = ACTIONS(5685), - [anon_sym_register] = ACTIONS(5685), - [anon_sym_const] = ACTIONS(5685), - [anon_sym_restrict] = ACTIONS(5685), - [anon_sym_volatile] = ACTIONS(5685), - [sym_function_specifier] = ACTIONS(5685), - [anon_sym_unsigned] = ACTIONS(5685), - [anon_sym_long] = ACTIONS(5685), - [anon_sym_short] = ACTIONS(5685), - [anon_sym_enum] = ACTIONS(5685), - [anon_sym_struct] = ACTIONS(5685), - [anon_sym_union] = ACTIONS(5685), - [anon_sym_COLON] = ACTIONS(5707), - [anon_sym_if] = ACTIONS(5661), - [anon_sym_else] = ACTIONS(5661), - [anon_sym_switch] = ACTIONS(5661), - [anon_sym_case] = ACTIONS(5661), - [anon_sym_default] = ACTIONS(5661), - [anon_sym_while] = ACTIONS(5661), - [anon_sym_do] = ACTIONS(5661), - [anon_sym_for] = ACTIONS(5661), - [anon_sym_return] = ACTIONS(5661), - [anon_sym_break] = ACTIONS(5661), - [anon_sym_continue] = ACTIONS(5661), - [anon_sym_goto] = ACTIONS(5661), - [anon_sym_AMP] = ACTIONS(5712), - [anon_sym_BANG] = ACTIONS(5716), - [anon_sym_TILDE] = ACTIONS(5720), - [anon_sym_PLUS] = ACTIONS(5724), - [anon_sym_DASH] = ACTIONS(5724), - [anon_sym_DASH_DASH] = ACTIONS(5728), - [anon_sym_PLUS_PLUS] = ACTIONS(5728), - [anon_sym_sizeof] = ACTIONS(5732), - [sym_number_literal] = ACTIONS(5736), - [sym_char_literal] = ACTIONS(5736), - [sym_string_literal] = ACTIONS(5740), - [sym_identifier] = ACTIONS(5744), + [sym_preproc_include] = STATE(1077), + [sym_preproc_def] = STATE(1077), + [sym_preproc_function_def] = STATE(1077), + [sym_preproc_call] = STATE(1077), + [sym_preproc_if] = STATE(17), + [sym_preproc_if_in_compound_statement] = STATE(163), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_ifdef_in_compound_statement] = STATE(164), + [sym_preproc_else] = STATE(61), + [sym_preproc_else_in_compound_statement] = STATE(414), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(1077), + [sym__declaration_specifiers] = STATE(18), + [sym_linkage_specification] = STATE(17), + [sym_compound_statement] = STATE(162), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym__empty_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_translation_unit_repeat1] = STATE(62), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(415), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [sym__pound_include] = ACTIONS(125), + [sym__pound_define] = ACTIONS(127), + [sym__pound_if] = ACTIONS(2516), + [sym__pound_ifdef] = ACTIONS(2518), + [sym__pound_endif] = ACTIONS(6269), + [sym__pound_else] = ACTIONS(4534), + [sym_preproc_directive] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1177), [sym_comment] = ACTIONS(121), }, [1224] = { - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_SEMI] = ACTIONS(5761), - [anon_sym_LBRACE] = ACTIONS(5767), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(5770), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(5780), - [anon_sym_COLON] = ACTIONS(5785), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_STAR_EQ] = ACTIONS(1572), - [anon_sym_SLASH_EQ] = ACTIONS(1572), - [anon_sym_PERCENT_EQ] = ACTIONS(1572), - [anon_sym_PLUS_EQ] = ACTIONS(1572), - [anon_sym_DASH_EQ] = ACTIONS(1572), - [anon_sym_LT_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_GT_EQ] = ACTIONS(1572), - [anon_sym_AMP_EQ] = ACTIONS(1572), - [anon_sym_CARET_EQ] = ACTIONS(1572), - [anon_sym_PIPE_EQ] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1574), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_GT] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1574), - [anon_sym_GT_GT] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1574), - [anon_sym_PERCENT] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_DASH_GT] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(6271), + [sym__pound_include] = ACTIONS(6275), + [sym__pound_define] = ACTIONS(6275), + [sym__pound_if] = ACTIONS(6275), + [sym__pound_ifdef] = ACTIONS(6275), + [sym__pound_endif] = ACTIONS(6275), + [sym__pound_else] = ACTIONS(6275), + [sym_preproc_directive] = ACTIONS(6279), + [anon_sym_SEMI] = ACTIONS(6271), + [anon_sym_extern] = ACTIONS(6275), + [anon_sym_LBRACE] = ACTIONS(6271), + [anon_sym_RBRACE] = ACTIONS(6271), + [anon_sym_STAR] = ACTIONS(6271), + [anon_sym_typedef] = ACTIONS(6275), + [anon_sym_static] = ACTIONS(6275), + [anon_sym_auto] = ACTIONS(6275), + [anon_sym_register] = ACTIONS(6275), + [anon_sym_const] = ACTIONS(6275), + [anon_sym_restrict] = ACTIONS(6275), + [anon_sym_volatile] = ACTIONS(6275), + [sym_function_specifier] = ACTIONS(6275), + [anon_sym_unsigned] = ACTIONS(6275), + [anon_sym_long] = ACTIONS(6275), + [anon_sym_short] = ACTIONS(6275), + [anon_sym_enum] = ACTIONS(6275), + [anon_sym_struct] = ACTIONS(6275), + [anon_sym_union] = ACTIONS(6275), + [anon_sym_if] = ACTIONS(6275), + [anon_sym_else] = ACTIONS(6275), + [anon_sym_switch] = ACTIONS(6275), + [anon_sym_case] = ACTIONS(6275), + [anon_sym_default] = ACTIONS(6275), + [anon_sym_while] = ACTIONS(6275), + [anon_sym_do] = ACTIONS(6275), + [anon_sym_for] = ACTIONS(6275), + [anon_sym_return] = ACTIONS(6275), + [anon_sym_break] = ACTIONS(6275), + [anon_sym_continue] = ACTIONS(6275), + [anon_sym_goto] = ACTIONS(6275), + [anon_sym_AMP] = ACTIONS(6271), + [anon_sym_BANG] = ACTIONS(6271), + [anon_sym_TILDE] = ACTIONS(6271), + [anon_sym_PLUS] = ACTIONS(6275), + [anon_sym_DASH] = ACTIONS(6275), + [anon_sym_DASH_DASH] = ACTIONS(6271), + [anon_sym_PLUS_PLUS] = ACTIONS(6271), + [anon_sym_sizeof] = ACTIONS(6275), + [sym_number_literal] = ACTIONS(6275), + [sym_char_literal] = ACTIONS(6275), + [sym_string_literal] = ACTIONS(6271), + [sym_identifier] = ACTIONS(6279), [sym_comment] = ACTIONS(121), }, [1225] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(1347), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3027), + [sym_compound_statement] = STATE(1315), + [sym_labeled_statement] = STATE(1315), + [sym_expression_statement] = STATE(1315), + [sym_if_statement] = STATE(1315), + [sym_switch_statement] = STATE(1315), + [sym_case_statement] = STATE(1315), + [sym_while_statement] = STATE(1315), + [sym_do_statement] = STATE(1315), + [sym_for_statement] = STATE(1315), + [sym_return_statement] = STATE(1315), + [sym_break_statement] = STATE(1315), + [sym_continue_statement] = STATE(1315), + [sym_goto_statement] = STATE(1315), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1226] = { - [sym__expression] = STATE(1348), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1316), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(5688), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1227] = { - [sym__expression] = STATE(1349), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(5789), - [anon_sym_COMMA] = ACTIONS(5793), - [anon_sym_RPAREN] = ACTIONS(5793), - [anon_sym_SEMI] = ACTIONS(5793), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(5796), - [anon_sym_LBRACK] = ACTIONS(5793), - [anon_sym_RBRACK] = ACTIONS(5793), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_auto] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_restrict] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [sym_function_specifier] = ACTIONS(1530), - [anon_sym_COLON] = ACTIONS(5793), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(5796), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(5800), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(5803), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(5806), - [anon_sym_DASH] = ACTIONS(5806), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(5810), - [anon_sym_PLUS_PLUS] = ACTIONS(5810), - [anon_sym_sizeof] = ACTIONS(5814), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(5817), - [sym_char_literal] = ACTIONS(5817), - [sym_string_literal] = ACTIONS(5820), - [sym_identifier] = ACTIONS(5823), + [sym_compound_statement] = STATE(1317), + [sym_labeled_statement] = STATE(1317), + [sym_expression_statement] = STATE(1317), + [sym_if_statement] = STATE(1317), + [sym_switch_statement] = STATE(1317), + [sym_case_statement] = STATE(1317), + [sym_while_statement] = STATE(1317), + [sym_do_statement] = STATE(1317), + [sym_for_statement] = STATE(1317), + [sym_return_statement] = STATE(1317), + [sym_break_statement] = STATE(1317), + [sym_continue_statement] = STATE(1317), + [sym_goto_statement] = STATE(1317), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1228] = { - [ts_builtin_sym_end] = ACTIONS(5826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(5829), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(5829), - [anon_sym_LPAREN] = ACTIONS(5826), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(5829), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(5829), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(5829), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(5829), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(5829), - [sym_preproc_directive] = ACTIONS(5832), - [anon_sym_SEMI] = ACTIONS(5826), - [anon_sym_extern] = ACTIONS(5829), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_typedef] = ACTIONS(5829), - [anon_sym_static] = ACTIONS(5829), - [anon_sym_auto] = ACTIONS(5829), - [anon_sym_register] = ACTIONS(5829), - [anon_sym_const] = ACTIONS(5829), - [anon_sym_restrict] = ACTIONS(5829), - [anon_sym_volatile] = ACTIONS(5829), - [sym_function_specifier] = ACTIONS(5829), - [anon_sym_unsigned] = ACTIONS(5829), - [anon_sym_long] = ACTIONS(5829), - [anon_sym_short] = ACTIONS(5829), - [anon_sym_enum] = ACTIONS(5829), - [anon_sym_struct] = ACTIONS(5829), - [anon_sym_union] = ACTIONS(5829), - [anon_sym_if] = ACTIONS(5829), - [anon_sym_switch] = ACTIONS(5829), - [anon_sym_case] = ACTIONS(5829), - [anon_sym_default] = ACTIONS(5829), - [anon_sym_while] = ACTIONS(5829), - [anon_sym_do] = ACTIONS(5829), - [anon_sym_for] = ACTIONS(5829), - [anon_sym_return] = ACTIONS(5829), - [anon_sym_break] = ACTIONS(5829), - [anon_sym_continue] = ACTIONS(5829), - [anon_sym_goto] = ACTIONS(5829), - [anon_sym_AMP] = ACTIONS(5826), - [anon_sym_BANG] = ACTIONS(5826), - [anon_sym_TILDE] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5829), - [anon_sym_DASH] = ACTIONS(5829), - [anon_sym_DASH_DASH] = ACTIONS(5826), - [anon_sym_PLUS_PLUS] = ACTIONS(5826), - [anon_sym_sizeof] = ACTIONS(5829), - [sym_number_literal] = ACTIONS(5829), - [sym_char_literal] = ACTIONS(5829), - [sym_string_literal] = ACTIONS(5826), - [sym_identifier] = ACTIONS(5832), + [sym__expression] = STATE(1318), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(5688), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1229] = { - [ts_builtin_sym_end] = ACTIONS(5835), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(5838), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(5838), - [anon_sym_LPAREN] = ACTIONS(5835), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(5838), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(5838), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(5838), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(5838), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(5838), - [sym_preproc_directive] = ACTIONS(5841), - [anon_sym_SEMI] = ACTIONS(5835), - [anon_sym_extern] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_RBRACE] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5835), - [anon_sym_typedef] = ACTIONS(5838), - [anon_sym_static] = ACTIONS(5838), - [anon_sym_auto] = ACTIONS(5838), - [anon_sym_register] = ACTIONS(5838), - [anon_sym_const] = ACTIONS(5838), - [anon_sym_restrict] = ACTIONS(5838), - [anon_sym_volatile] = ACTIONS(5838), - [sym_function_specifier] = ACTIONS(5838), - [anon_sym_unsigned] = ACTIONS(5838), - [anon_sym_long] = ACTIONS(5838), - [anon_sym_short] = ACTIONS(5838), - [anon_sym_enum] = ACTIONS(5838), - [anon_sym_struct] = ACTIONS(5838), - [anon_sym_union] = ACTIONS(5838), - [anon_sym_if] = ACTIONS(5838), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_switch] = ACTIONS(5838), - [anon_sym_case] = ACTIONS(5838), - [anon_sym_default] = ACTIONS(5838), - [anon_sym_while] = ACTIONS(5838), - [anon_sym_do] = ACTIONS(5838), - [anon_sym_for] = ACTIONS(5838), - [anon_sym_return] = ACTIONS(5838), - [anon_sym_break] = ACTIONS(5838), - [anon_sym_continue] = ACTIONS(5838), - [anon_sym_goto] = ACTIONS(5838), - [anon_sym_AMP] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(5835), - [anon_sym_TILDE] = ACTIONS(5835), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_DASH_DASH] = ACTIONS(5835), - [anon_sym_PLUS_PLUS] = ACTIONS(5835), - [anon_sym_sizeof] = ACTIONS(5838), - [sym_number_literal] = ACTIONS(5838), - [sym_char_literal] = ACTIONS(5838), - [sym_string_literal] = ACTIONS(5835), - [sym_identifier] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(6283), [sym_comment] = ACTIONS(121), }, [1230] = { - [anon_sym_LPAREN] = ACTIONS(5844), + [anon_sym_RPAREN] = ACTIONS(6285), [sym_comment] = ACTIONS(121), }, [1231] = { - [anon_sym_LPAREN] = ACTIONS(5846), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(1349), + [sym__pound_include] = ACTIONS(785), + [sym__pound_define] = ACTIONS(785), + [sym__pound_if] = ACTIONS(785), + [sym__pound_ifdef] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_extern] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_typedef] = ACTIONS(785), + [anon_sym_static] = ACTIONS(785), + [anon_sym_auto] = ACTIONS(785), + [anon_sym_register] = ACTIONS(785), + [anon_sym_const] = ACTIONS(785), + [anon_sym_restrict] = ACTIONS(785), + [anon_sym_volatile] = ACTIONS(785), + [sym_function_specifier] = ACTIONS(785), + [anon_sym_unsigned] = ACTIONS(785), + [anon_sym_long] = ACTIONS(785), + [anon_sym_short] = ACTIONS(785), + [anon_sym_enum] = ACTIONS(785), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_union] = ACTIONS(785), + [anon_sym_if] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_return] = ACTIONS(785), + [anon_sym_break] = ACTIONS(785), + [anon_sym_continue] = ACTIONS(785), + [anon_sym_goto] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(785), + [sym_string_literal] = ACTIONS(783), + [sym_identifier] = ACTIONS(787), [sym_comment] = ACTIONS(121), }, [1232] = { - [sym__expression] = STATE(1352), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(6287), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6293), + [anon_sym_STAR_EQ] = ACTIONS(6296), + [anon_sym_SLASH_EQ] = ACTIONS(6296), + [anon_sym_PERCENT_EQ] = ACTIONS(6296), + [anon_sym_PLUS_EQ] = ACTIONS(6296), + [anon_sym_DASH_EQ] = ACTIONS(6296), + [anon_sym_LT_LT_EQ] = ACTIONS(6296), + [anon_sym_GT_GT_EQ] = ACTIONS(6296), + [anon_sym_AMP_EQ] = ACTIONS(6296), + [anon_sym_CARET_EQ] = ACTIONS(6296), + [anon_sym_PIPE_EQ] = ACTIONS(6296), + [anon_sym_AMP] = ACTIONS(6299), + [anon_sym_PIPE_PIPE] = ACTIONS(6302), + [anon_sym_AMP_AMP] = ACTIONS(6302), + [anon_sym_PIPE] = ACTIONS(6299), + [anon_sym_CARET] = ACTIONS(6299), + [anon_sym_EQ_EQ] = ACTIONS(6305), + [anon_sym_BANG_EQ] = ACTIONS(6305), + [anon_sym_LT] = ACTIONS(6308), + [anon_sym_GT] = ACTIONS(6308), + [anon_sym_LT_EQ] = ACTIONS(6311), + [anon_sym_GT_EQ] = ACTIONS(6311), + [anon_sym_LT_LT] = ACTIONS(6314), + [anon_sym_GT_GT] = ACTIONS(6314), + [anon_sym_PLUS] = ACTIONS(6287), + [anon_sym_DASH] = ACTIONS(6287), + [anon_sym_SLASH] = ACTIONS(6287), + [anon_sym_PERCENT] = ACTIONS(6287), + [anon_sym_DASH_DASH] = ACTIONS(5918), + [anon_sym_PLUS_PLUS] = ACTIONS(5918), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DASH_GT] = ACTIONS(5921), [sym_comment] = ACTIONS(121), }, [1233] = { - [anon_sym_COLON] = ACTIONS(5848), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(6317), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(6320), + [anon_sym_QMARK] = ACTIONS(6323), + [anon_sym_STAR_EQ] = ACTIONS(6326), + [anon_sym_SLASH_EQ] = ACTIONS(6326), + [anon_sym_PERCENT_EQ] = ACTIONS(6326), + [anon_sym_PLUS_EQ] = ACTIONS(6326), + [anon_sym_DASH_EQ] = ACTIONS(6326), + [anon_sym_LT_LT_EQ] = ACTIONS(6326), + [anon_sym_GT_GT_EQ] = ACTIONS(6326), + [anon_sym_AMP_EQ] = ACTIONS(6326), + [anon_sym_CARET_EQ] = ACTIONS(6326), + [anon_sym_PIPE_EQ] = ACTIONS(6326), + [anon_sym_AMP] = ACTIONS(6329), + [anon_sym_PIPE_PIPE] = ACTIONS(6332), + [anon_sym_AMP_AMP] = ACTIONS(6332), + [anon_sym_PIPE] = ACTIONS(6329), + [anon_sym_CARET] = ACTIONS(6329), + [anon_sym_EQ_EQ] = ACTIONS(6335), + [anon_sym_BANG_EQ] = ACTIONS(6335), + [anon_sym_LT] = ACTIONS(6338), + [anon_sym_GT] = ACTIONS(6338), + [anon_sym_LT_EQ] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6341), + [anon_sym_LT_LT] = ACTIONS(6344), + [anon_sym_GT_GT] = ACTIONS(6344), + [anon_sym_PLUS] = ACTIONS(6317), + [anon_sym_DASH] = ACTIONS(6317), + [anon_sym_SLASH] = ACTIONS(6317), + [anon_sym_PERCENT] = ACTIONS(6317), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), [sym_comment] = ACTIONS(121), }, [1234] = { - [anon_sym_LPAREN] = ACTIONS(5850), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(6347), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(6350), + [anon_sym_QMARK] = ACTIONS(6353), + [anon_sym_STAR_EQ] = ACTIONS(6356), + [anon_sym_SLASH_EQ] = ACTIONS(6356), + [anon_sym_PERCENT_EQ] = ACTIONS(6356), + [anon_sym_PLUS_EQ] = ACTIONS(6356), + [anon_sym_DASH_EQ] = ACTIONS(6356), + [anon_sym_LT_LT_EQ] = ACTIONS(6356), + [anon_sym_GT_GT_EQ] = ACTIONS(6356), + [anon_sym_AMP_EQ] = ACTIONS(6356), + [anon_sym_CARET_EQ] = ACTIONS(6356), + [anon_sym_PIPE_EQ] = ACTIONS(6356), + [anon_sym_AMP] = ACTIONS(6359), + [anon_sym_PIPE_PIPE] = ACTIONS(6362), + [anon_sym_AMP_AMP] = ACTIONS(6362), + [anon_sym_PIPE] = ACTIONS(6359), + [anon_sym_CARET] = ACTIONS(6359), + [anon_sym_EQ_EQ] = ACTIONS(6365), + [anon_sym_BANG_EQ] = ACTIONS(6365), + [anon_sym_LT] = ACTIONS(6368), + [anon_sym_GT] = ACTIONS(6368), + [anon_sym_LT_EQ] = ACTIONS(6371), + [anon_sym_GT_EQ] = ACTIONS(6371), + [anon_sym_LT_LT] = ACTIONS(6374), + [anon_sym_GT_GT] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6347), + [anon_sym_DASH] = ACTIONS(6347), + [anon_sym_SLASH] = ACTIONS(6347), + [anon_sym_PERCENT] = ACTIONS(6347), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5150), + [anon_sym_DASH_GT] = ACTIONS(5150), [sym_comment] = ACTIONS(121), }, [1235] = { - [anon_sym_LPAREN] = ACTIONS(5852), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(6377), + [anon_sym_LBRACK] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(6380), + [anon_sym_QMARK] = ACTIONS(6383), + [anon_sym_STAR_EQ] = ACTIONS(6386), + [anon_sym_SLASH_EQ] = ACTIONS(6386), + [anon_sym_PERCENT_EQ] = ACTIONS(6386), + [anon_sym_PLUS_EQ] = ACTIONS(6386), + [anon_sym_DASH_EQ] = ACTIONS(6386), + [anon_sym_LT_LT_EQ] = ACTIONS(6386), + [anon_sym_GT_GT_EQ] = ACTIONS(6386), + [anon_sym_AMP_EQ] = ACTIONS(6386), + [anon_sym_CARET_EQ] = ACTIONS(6386), + [anon_sym_PIPE_EQ] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6389), + [anon_sym_PIPE_PIPE] = ACTIONS(6392), + [anon_sym_AMP_AMP] = ACTIONS(6392), + [anon_sym_PIPE] = ACTIONS(6389), + [anon_sym_CARET] = ACTIONS(6389), + [anon_sym_EQ_EQ] = ACTIONS(6395), + [anon_sym_BANG_EQ] = ACTIONS(6395), + [anon_sym_LT] = ACTIONS(6398), + [anon_sym_GT] = ACTIONS(6398), + [anon_sym_LT_EQ] = ACTIONS(6401), + [anon_sym_GT_EQ] = ACTIONS(6401), + [anon_sym_LT_LT] = ACTIONS(6404), + [anon_sym_GT_GT] = ACTIONS(6404), + [anon_sym_PLUS] = ACTIONS(6377), + [anon_sym_DASH] = ACTIONS(6377), + [anon_sym_SLASH] = ACTIONS(6377), + [anon_sym_PERCENT] = ACTIONS(6377), + [anon_sym_DASH_DASH] = ACTIONS(6020), + [anon_sym_PLUS_PLUS] = ACTIONS(6020), + [anon_sym_DOT] = ACTIONS(6023), + [anon_sym_DASH_GT] = ACTIONS(6023), [sym_comment] = ACTIONS(121), }, [1236] = { - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(5854), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_type_qualifier] = STATE(77), + [sym__type_specifier] = STATE(78), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(241), + [sym_comma_expression] = STATE(242), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_type_descriptor] = STATE(1321), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(80), + [aux_sym_type_descriptor_repeat1] = STATE(81), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(121), }, [1237] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(5856), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5443), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_LBRACK] = ACTIONS(5449), + [anon_sym_EQ] = ACTIONS(6410), + [anon_sym_QMARK] = ACTIONS(6413), + [anon_sym_STAR_EQ] = ACTIONS(6416), + [anon_sym_SLASH_EQ] = ACTIONS(6416), + [anon_sym_PERCENT_EQ] = ACTIONS(6416), + [anon_sym_PLUS_EQ] = ACTIONS(6416), + [anon_sym_DASH_EQ] = ACTIONS(6416), + [anon_sym_LT_LT_EQ] = ACTIONS(6416), + [anon_sym_GT_GT_EQ] = ACTIONS(6416), + [anon_sym_AMP_EQ] = ACTIONS(6416), + [anon_sym_CARET_EQ] = ACTIONS(6416), + [anon_sym_PIPE_EQ] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6419), + [anon_sym_PIPE_PIPE] = ACTIONS(6422), + [anon_sym_AMP_AMP] = ACTIONS(6422), + [anon_sym_PIPE] = ACTIONS(6419), + [anon_sym_CARET] = ACTIONS(6419), + [anon_sym_EQ_EQ] = ACTIONS(6425), + [anon_sym_BANG_EQ] = ACTIONS(6425), + [anon_sym_LT] = ACTIONS(6428), + [anon_sym_GT] = ACTIONS(6428), + [anon_sym_LT_EQ] = ACTIONS(6431), + [anon_sym_GT_EQ] = ACTIONS(6431), + [anon_sym_LT_LT] = ACTIONS(6434), + [anon_sym_GT_GT] = ACTIONS(6434), + [anon_sym_PLUS] = ACTIONS(6407), + [anon_sym_DASH] = ACTIONS(6407), + [anon_sym_SLASH] = ACTIONS(6407), + [anon_sym_PERCENT] = ACTIONS(6407), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5485), + [anon_sym_DASH_GT] = ACTIONS(5485), [sym_comment] = ACTIONS(121), }, [1238] = { - [anon_sym_LPAREN] = ACTIONS(5858), - [anon_sym_SEMI] = ACTIONS(5858), - [anon_sym_extern] = ACTIONS(5861), - [anon_sym_RBRACE] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5858), - [anon_sym_typedef] = ACTIONS(5861), - [anon_sym_static] = ACTIONS(5861), - [anon_sym_auto] = ACTIONS(5861), - [anon_sym_register] = ACTIONS(5861), - [anon_sym_const] = ACTIONS(5861), - [anon_sym_restrict] = ACTIONS(5861), - [anon_sym_volatile] = ACTIONS(5861), - [sym_function_specifier] = ACTIONS(5861), - [anon_sym_unsigned] = ACTIONS(5861), - [anon_sym_long] = ACTIONS(5861), - [anon_sym_short] = ACTIONS(5861), - [anon_sym_enum] = ACTIONS(5861), - [anon_sym_struct] = ACTIONS(5861), - [anon_sym_union] = ACTIONS(5861), - [anon_sym_COLON] = ACTIONS(5858), - [sym_identifier] = ACTIONS(5864), + [sym__declarator] = STATE(83), + [sym__field_declarator] = STATE(204), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(6437), + [sym_identifier] = ACTIONS(6439), [sym_comment] = ACTIONS(121), }, [1239] = { - [sym__expression] = STATE(1358), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declarator] = STATE(84), + [sym__field_declarator] = STATE(205), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(4614), + [sym_identifier] = ACTIONS(4616), [sym_comment] = ACTIONS(121), }, [1240] = { - [sym_compound_statement] = STATE(1359), - [sym_labeled_statement] = STATE(1359), - [sym_expression_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_switch_statement] = STATE(1359), - [sym_case_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_do_statement] = STATE(1359), - [sym_for_statement] = STATE(1359), - [sym_return_statement] = STATE(1359), - [sym_break_statement] = STATE(1359), - [sym_continue_statement] = STATE(1359), - [sym_goto_statement] = STATE(1359), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(5867), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(5873), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_RBRACK] = ACTIONS(1825), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_COLON] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_QMARK] = ACTIONS(1825), - [anon_sym_STAR_EQ] = ACTIONS(1825), - [anon_sym_SLASH_EQ] = ACTIONS(1825), - [anon_sym_PERCENT_EQ] = ACTIONS(1825), - [anon_sym_PLUS_EQ] = ACTIONS(1825), - [anon_sym_DASH_EQ] = ACTIONS(1825), - [anon_sym_LT_LT_EQ] = ACTIONS(1825), - [anon_sym_GT_GT_EQ] = ACTIONS(1825), - [anon_sym_AMP_EQ] = ACTIONS(1825), - [anon_sym_CARET_EQ] = ACTIONS(1825), - [anon_sym_PIPE_EQ] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(5873), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_EQ_EQ] = ACTIONS(1825), - [anon_sym_BANG_EQ] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(5876), - [anon_sym_DASH] = ACTIONS(5876), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(5879), - [anon_sym_PLUS_PLUS] = ACTIONS(5879), - [anon_sym_sizeof] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(1825), - [anon_sym_DASH_GT] = ACTIONS(1825), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(5581), + [anon_sym_COMMA] = ACTIONS(5581), + [anon_sym_SEMI] = ACTIONS(5581), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(5581), + [anon_sym_EQ] = ACTIONS(331), + [anon_sym_COLON] = ACTIONS(691), [sym_comment] = ACTIONS(121), }, [1241] = { - [sym__expression] = STATE(1360), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(1361), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1324), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1242] = { - [sym__declaration_specifiers] = STATE(322), - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym__abstract_declarator] = STATE(359), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1116), - [sym__type_specifier] = STATE(1117), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_parameter_list] = STATE(187), - [sym_parameter_declaration] = STATE(320), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(176), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4206), + [sym__expression] = STATE(1325), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1243] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym__abstract_declarator] = STATE(360), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(5882), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4224), + [sym__expression] = STATE(1326), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_sizeof] = ACTIONS(805), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1244] = { - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(370), - [anon_sym_RPAREN] = ACTIONS(4246), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym__expression] = STATE(1327), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1245] = { - [anon_sym_RPAREN] = ACTIONS(5885), + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1246] = { - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym__expression] = STATE(1329), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1247] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5887), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(5890), - [anon_sym_LBRACK] = ACTIONS(5893), - [anon_sym_EQ] = ACTIONS(5896), - [anon_sym_QMARK] = ACTIONS(5899), - [anon_sym_STAR_EQ] = ACTIONS(5902), - [anon_sym_SLASH_EQ] = ACTIONS(5902), - [anon_sym_PERCENT_EQ] = ACTIONS(5902), - [anon_sym_PLUS_EQ] = ACTIONS(5902), - [anon_sym_DASH_EQ] = ACTIONS(5902), - [anon_sym_LT_LT_EQ] = ACTIONS(5902), - [anon_sym_GT_GT_EQ] = ACTIONS(5902), - [anon_sym_AMP_EQ] = ACTIONS(5902), - [anon_sym_CARET_EQ] = ACTIONS(5902), - [anon_sym_PIPE_EQ] = ACTIONS(5902), - [anon_sym_AMP] = ACTIONS(5905), - [anon_sym_PIPE_PIPE] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_PIPE] = ACTIONS(5905), - [anon_sym_CARET] = ACTIONS(5905), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_LT] = ACTIONS(5914), - [anon_sym_GT] = ACTIONS(5914), - [anon_sym_LT_EQ] = ACTIONS(5917), - [anon_sym_GT_EQ] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5920), - [anon_sym_GT_GT] = ACTIONS(5920), - [anon_sym_PLUS] = ACTIONS(5890), - [anon_sym_DASH] = ACTIONS(5890), - [anon_sym_SLASH] = ACTIONS(5890), - [anon_sym_PERCENT] = ACTIONS(5890), - [anon_sym_DASH_DASH] = ACTIONS(5923), - [anon_sym_PLUS_PLUS] = ACTIONS(5923), - [anon_sym_DOT] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), + [sym__expression] = STATE(1330), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1248] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(5929), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5932), - [anon_sym_QMARK] = ACTIONS(5935), - [anon_sym_STAR_EQ] = ACTIONS(5938), - [anon_sym_SLASH_EQ] = ACTIONS(5938), - [anon_sym_PERCENT_EQ] = ACTIONS(5938), - [anon_sym_PLUS_EQ] = ACTIONS(5938), - [anon_sym_DASH_EQ] = ACTIONS(5938), - [anon_sym_LT_LT_EQ] = ACTIONS(5938), - [anon_sym_GT_GT_EQ] = ACTIONS(5938), - [anon_sym_AMP_EQ] = ACTIONS(5938), - [anon_sym_CARET_EQ] = ACTIONS(5938), - [anon_sym_PIPE_EQ] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5941), - [anon_sym_PIPE_PIPE] = ACTIONS(5944), - [anon_sym_AMP_AMP] = ACTIONS(5944), - [anon_sym_PIPE] = ACTIONS(5941), - [anon_sym_CARET] = ACTIONS(5941), - [anon_sym_EQ_EQ] = ACTIONS(5947), - [anon_sym_BANG_EQ] = ACTIONS(5947), - [anon_sym_LT] = ACTIONS(5950), - [anon_sym_GT] = ACTIONS(5950), - [anon_sym_LT_EQ] = ACTIONS(5953), - [anon_sym_GT_EQ] = ACTIONS(5953), - [anon_sym_LT_LT] = ACTIONS(5956), - [anon_sym_GT_GT] = ACTIONS(5956), - [anon_sym_PLUS] = ACTIONS(5929), - [anon_sym_DASH] = ACTIONS(5929), - [anon_sym_SLASH] = ACTIONS(5929), - [anon_sym_PERCENT] = ACTIONS(5929), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_DASH_GT] = ACTIONS(5036), + [sym__expression] = STATE(1331), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1249] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(5959), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5965), - [anon_sym_STAR_EQ] = ACTIONS(5968), - [anon_sym_SLASH_EQ] = ACTIONS(5968), - [anon_sym_PERCENT_EQ] = ACTIONS(5968), - [anon_sym_PLUS_EQ] = ACTIONS(5968), - [anon_sym_DASH_EQ] = ACTIONS(5968), - [anon_sym_LT_LT_EQ] = ACTIONS(5968), - [anon_sym_GT_GT_EQ] = ACTIONS(5968), - [anon_sym_AMP_EQ] = ACTIONS(5968), - [anon_sym_CARET_EQ] = ACTIONS(5968), - [anon_sym_PIPE_EQ] = ACTIONS(5968), - [anon_sym_AMP] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(5974), - [anon_sym_AMP_AMP] = ACTIONS(5974), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_CARET] = ACTIONS(5971), - [anon_sym_EQ_EQ] = ACTIONS(5977), - [anon_sym_BANG_EQ] = ACTIONS(5977), - [anon_sym_LT] = ACTIONS(5980), - [anon_sym_GT] = ACTIONS(5980), - [anon_sym_LT_EQ] = ACTIONS(5983), - [anon_sym_GT_EQ] = ACTIONS(5983), - [anon_sym_LT_LT] = ACTIONS(5986), - [anon_sym_GT_GT] = ACTIONS(5986), - [anon_sym_PLUS] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5959), - [anon_sym_SLASH] = ACTIONS(5959), - [anon_sym_PERCENT] = ACTIONS(5959), - [anon_sym_DASH_DASH] = ACTIONS(5123), - [anon_sym_PLUS_PLUS] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(6441), + [anon_sym_COMMA] = ACTIONS(6441), + [anon_sym_RPAREN] = ACTIONS(6441), + [anon_sym_SEMI] = ACTIONS(6447), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(6451), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(6458), + [anon_sym_COLON] = ACTIONS(6462), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_STAR_EQ] = ACTIONS(1766), + [anon_sym_SLASH_EQ] = ACTIONS(1766), + [anon_sym_PERCENT_EQ] = ACTIONS(1766), + [anon_sym_PLUS_EQ] = ACTIONS(1766), + [anon_sym_DASH_EQ] = ACTIONS(1766), + [anon_sym_LT_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_GT_EQ] = ACTIONS(1766), + [anon_sym_AMP_EQ] = ACTIONS(1766), + [anon_sym_CARET_EQ] = ACTIONS(1766), + [anon_sym_PIPE_EQ] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(2947), + [anon_sym_DASH_GT] = ACTIONS(1766), [sym_comment] = ACTIONS(121), }, [1250] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(5992), - [anon_sym_LBRACK] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5998), - [anon_sym_QMARK] = ACTIONS(6001), - [anon_sym_STAR_EQ] = ACTIONS(6004), - [anon_sym_SLASH_EQ] = ACTIONS(6004), - [anon_sym_PERCENT_EQ] = ACTIONS(6004), - [anon_sym_PLUS_EQ] = ACTIONS(6004), - [anon_sym_DASH_EQ] = ACTIONS(6004), - [anon_sym_LT_LT_EQ] = ACTIONS(6004), - [anon_sym_GT_GT_EQ] = ACTIONS(6004), - [anon_sym_AMP_EQ] = ACTIONS(6004), - [anon_sym_CARET_EQ] = ACTIONS(6004), - [anon_sym_PIPE_EQ] = ACTIONS(6004), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6010), - [anon_sym_AMP_AMP] = ACTIONS(6010), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6013), - [anon_sym_BANG_EQ] = ACTIONS(6013), - [anon_sym_LT] = ACTIONS(6016), - [anon_sym_GT] = ACTIONS(6016), - [anon_sym_LT_EQ] = ACTIONS(6019), - [anon_sym_GT_EQ] = ACTIONS(6019), - [anon_sym_LT_LT] = ACTIONS(6022), - [anon_sym_GT_GT] = ACTIONS(6022), - [anon_sym_PLUS] = ACTIONS(5992), - [anon_sym_DASH] = ACTIONS(5992), - [anon_sym_SLASH] = ACTIONS(5992), - [anon_sym_PERCENT] = ACTIONS(5992), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6028), - [anon_sym_DASH_GT] = ACTIONS(6028), + [anon_sym_LPAREN] = ACTIONS(1303), + [sym__pound_include] = ACTIONS(1305), + [sym__pound_define] = ACTIONS(1305), + [sym__pound_if] = ACTIONS(1305), + [sym__pound_ifdef] = ACTIONS(1305), + [sym__pound_endif] = ACTIONS(1305), + [sym__pound_else] = ACTIONS(1305), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(6465), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(6470), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(6465), + [anon_sym_static] = ACTIONS(6465), + [anon_sym_auto] = ACTIONS(6465), + [anon_sym_register] = ACTIONS(6465), + [anon_sym_const] = ACTIONS(6465), + [anon_sym_restrict] = ACTIONS(6465), + [anon_sym_volatile] = ACTIONS(6465), + [sym_function_specifier] = ACTIONS(6465), + [anon_sym_unsigned] = ACTIONS(6465), + [anon_sym_long] = ACTIONS(6465), + [anon_sym_short] = ACTIONS(6465), + [anon_sym_enum] = ACTIONS(6465), + [anon_sym_struct] = ACTIONS(6465), + [anon_sym_union] = ACTIONS(6465), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_else] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1305), + [sym_char_literal] = ACTIONS(1305), + [sym_string_literal] = ACTIONS(1303), + [sym_identifier] = ACTIONS(6475), [sym_comment] = ACTIONS(121), }, [1251] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1363), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(6480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1252] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(6034), - [anon_sym_QMARK] = ACTIONS(6037), - [anon_sym_STAR_EQ] = ACTIONS(6040), - [anon_sym_SLASH_EQ] = ACTIONS(6040), - [anon_sym_PERCENT_EQ] = ACTIONS(6040), - [anon_sym_PLUS_EQ] = ACTIONS(6040), - [anon_sym_DASH_EQ] = ACTIONS(6040), - [anon_sym_LT_LT_EQ] = ACTIONS(6040), - [anon_sym_GT_GT_EQ] = ACTIONS(6040), - [anon_sym_AMP_EQ] = ACTIONS(6040), - [anon_sym_CARET_EQ] = ACTIONS(6040), - [anon_sym_PIPE_EQ] = ACTIONS(6040), - [anon_sym_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6046), - [anon_sym_AMP_AMP] = ACTIONS(6046), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_EQ_EQ] = ACTIONS(6049), - [anon_sym_BANG_EQ] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6052), - [anon_sym_GT] = ACTIONS(6052), - [anon_sym_LT_EQ] = ACTIONS(6055), - [anon_sym_GT_EQ] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6058), - [anon_sym_GT_GT] = ACTIONS(6058), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_PERCENT] = ACTIONS(6031), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5461), - [anon_sym_DASH_GT] = ACTIONS(5461), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(6482), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1253] = { - [sym__declarator] = STATE(1166), - [sym__abstract_declarator] = STATE(360), - [sym_pointer_declarator] = STATE(44), - [sym_abstract_pointer_declarator] = STATE(186), - [sym_function_declarator] = STATE(44), - [sym_abstract_function_declarator] = STATE(186), - [sym_array_declarator] = STATE(44), - [sym_abstract_array_declarator] = STATE(186), - [sym_parameter_list] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(6061), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(4251), - [anon_sym_LBRACK] = ACTIONS(2925), - [sym_identifier] = ACTIONS(415), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(4859), [sym_comment] = ACTIONS(121), }, [1254] = { - [sym_parameter_list] = STATE(145), - [aux_sym_declaration_repeat1] = STATE(319), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(5540), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(4855), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1255] = { - [sym__expression] = STATE(1364), - [sym_comma_expression] = STATE(336), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(6484), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1256] = { - [sym_compound_statement] = STATE(1365), - [sym_labeled_statement] = STATE(1365), - [sym_expression_statement] = STATE(1365), - [sym_if_statement] = STATE(1365), - [sym_switch_statement] = STATE(1365), - [sym_case_statement] = STATE(1365), - [sym_while_statement] = STATE(1365), - [sym_do_statement] = STATE(1365), - [sym_for_statement] = STATE(1365), - [sym_return_statement] = STATE(1365), - [sym_break_statement] = STATE(1365), - [sym_continue_statement] = STATE(1365), - [sym_goto_statement] = STATE(1365), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(1953), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(5569), - [anon_sym_COMMA] = ACTIONS(5574), - [anon_sym_RPAREN] = ACTIONS(5574), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1955), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(5577), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(5582), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_STAR] = ACTIONS(5589), - [anon_sym_LBRACK] = ACTIONS(5574), - [anon_sym_RBRACK] = ACTIONS(5574), - [anon_sym_EQ] = ACTIONS(5594), - [anon_sym_typedef] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [sym_function_specifier] = ACTIONS(1955), - [anon_sym_unsigned] = ACTIONS(1955), - [anon_sym_long] = ACTIONS(1955), - [anon_sym_short] = ACTIONS(1955), - [anon_sym_enum] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_union] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(5574), - [anon_sym_if] = ACTIONS(5597), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_switch] = ACTIONS(5600), - [anon_sym_case] = ACTIONS(5603), - [anon_sym_default] = ACTIONS(5606), - [anon_sym_while] = ACTIONS(5609), - [anon_sym_do] = ACTIONS(5612), - [anon_sym_for] = ACTIONS(5615), - [anon_sym_return] = ACTIONS(5618), - [anon_sym_break] = ACTIONS(5621), - [anon_sym_continue] = ACTIONS(5624), - [anon_sym_goto] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5574), - [anon_sym_STAR_EQ] = ACTIONS(5574), - [anon_sym_SLASH_EQ] = ACTIONS(5574), - [anon_sym_PERCENT_EQ] = ACTIONS(5574), - [anon_sym_PLUS_EQ] = ACTIONS(5574), - [anon_sym_DASH_EQ] = ACTIONS(5574), - [anon_sym_LT_LT_EQ] = ACTIONS(5574), - [anon_sym_GT_GT_EQ] = ACTIONS(5574), - [anon_sym_AMP_EQ] = ACTIONS(5574), - [anon_sym_CARET_EQ] = ACTIONS(5574), - [anon_sym_PIPE_EQ] = ACTIONS(5574), - [anon_sym_AMP] = ACTIONS(5589), - [anon_sym_PIPE_PIPE] = ACTIONS(5574), - [anon_sym_AMP_AMP] = ACTIONS(5574), - [anon_sym_BANG] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5594), - [anon_sym_CARET] = ACTIONS(5594), - [anon_sym_TILDE] = ACTIONS(5633), - [anon_sym_EQ_EQ] = ACTIONS(5574), - [anon_sym_BANG_EQ] = ACTIONS(5574), - [anon_sym_LT] = ACTIONS(5594), - [anon_sym_GT] = ACTIONS(5594), - [anon_sym_LT_EQ] = ACTIONS(5574), - [anon_sym_GT_EQ] = ACTIONS(5574), - [anon_sym_LT_LT] = ACTIONS(5594), - [anon_sym_GT_GT] = ACTIONS(5594), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5594), - [anon_sym_PERCENT] = ACTIONS(5594), - [anon_sym_DASH_DASH] = ACTIONS(5641), - [anon_sym_PLUS_PLUS] = ACTIONS(5641), - [anon_sym_sizeof] = ACTIONS(5646), - [anon_sym_DOT] = ACTIONS(5574), - [anon_sym_DASH_GT] = ACTIONS(5574), - [sym_number_literal] = ACTIONS(5649), - [sym_char_literal] = ACTIONS(5649), - [sym_string_literal] = ACTIONS(5652), - [sym_identifier] = ACTIONS(5655), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1257] = { - [sym__expression] = STATE(1366), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(5515), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1335), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1258] = { - [sym__expression] = STATE(1367), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(6486), [sym_comment] = ACTIONS(121), }, [1259] = { - [sym__expression] = STATE(1368), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [aux_sym_preproc_params_repeat1] = STATE(188), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(6488), + [anon_sym_RPAREN] = ACTIONS(6491), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1260] = { - [sym__expression] = STATE(1369), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(6495), [sym_comment] = ACTIONS(121), }, [1261] = { - [sym__expression] = STATE(1370), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [sym__pound_include] = ACTIONS(785), + [sym__pound_define] = ACTIONS(785), + [sym__pound_if] = ACTIONS(785), + [sym__pound_ifdef] = ACTIONS(785), + [sym__pound_endif] = ACTIONS(785), + [sym__pound_else] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_extern] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(6497), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_typedef] = ACTIONS(4591), + [anon_sym_static] = ACTIONS(4591), + [anon_sym_auto] = ACTIONS(4591), + [anon_sym_register] = ACTIONS(4591), + [anon_sym_const] = ACTIONS(4591), + [anon_sym_restrict] = ACTIONS(4591), + [anon_sym_volatile] = ACTIONS(4591), + [sym_function_specifier] = ACTIONS(4591), + [anon_sym_unsigned] = ACTIONS(785), + [anon_sym_long] = ACTIONS(785), + [anon_sym_short] = ACTIONS(785), + [anon_sym_enum] = ACTIONS(785), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_union] = ACTIONS(785), + [anon_sym_COLON] = ACTIONS(6497), + [anon_sym_if] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_do] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_return] = ACTIONS(785), + [anon_sym_break] = ACTIONS(785), + [anon_sym_continue] = ACTIONS(785), + [anon_sym_goto] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4595), + [anon_sym_PLUS_PLUS] = ACTIONS(4595), + [anon_sym_sizeof] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [sym_char_literal] = ACTIONS(4591), + [sym_string_literal] = ACTIONS(4595), + [sym_identifier] = ACTIONS(6500), [sym_comment] = ACTIONS(121), }, [1262] = { - [sym__expression] = STATE(1371), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1263] = { - [sym__expression] = STATE(1372), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__declarator] = STATE(280), + [sym__field_declarator] = STATE(116), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [sym_init_declarator] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(6504), + [anon_sym_COLON] = ACTIONS(457), + [sym_identifier] = ACTIONS(4616), [sym_comment] = ACTIONS(121), }, [1264] = { - [sym__expression] = STATE(1373), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1265] = { - [sym__expression] = STATE(1374), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1340), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(6506), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1266] = { - [anon_sym_COMMA] = ACTIONS(6064), - [anon_sym_RPAREN] = ACTIONS(6064), + [sym__expression] = STATE(1341), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(6506), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1267] = { - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [sym_identifier] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(6508), + [anon_sym_COMMA] = ACTIONS(6508), + [anon_sym_RPAREN] = ACTIONS(6508), + [anon_sym_SEMI] = ACTIONS(6513), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(6508), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_COLON] = ACTIONS(1792), [sym_comment] = ACTIONS(121), }, [1268] = { - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(176), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_STAR] = ACTIONS(4305), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4307), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(6516), + [anon_sym_RPAREN] = ACTIONS(6519), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(4311), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_LT_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_GT_EQ] = ACTIONS(4313), + [anon_sym_AMP_EQ] = ACTIONS(4313), + [anon_sym_CARET_EQ] = ACTIONS(4313), + [anon_sym_PIPE_EQ] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4317), + [anon_sym_AMP_AMP] = ACTIONS(4317), + [anon_sym_PIPE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_LT_LT] = ACTIONS(4325), + [anon_sym_GT_GT] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1269] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_STAR] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(6522), + [sym__pound_include] = ACTIONS(6529), + [sym__pound_define] = ACTIONS(6529), + [sym__pound_if] = ACTIONS(6529), + [sym__pound_ifdef] = ACTIONS(6529), + [sym__pound_endif] = ACTIONS(6529), + [sym__pound_else] = ACTIONS(6529), + [sym_preproc_directive] = ACTIONS(6536), + [anon_sym_SEMI] = ACTIONS(6522), + [anon_sym_extern] = ACTIONS(6529), + [anon_sym_LBRACE] = ACTIONS(6522), + [anon_sym_RBRACE] = ACTIONS(6522), + [anon_sym_STAR] = ACTIONS(6522), + [anon_sym_typedef] = ACTIONS(6529), + [anon_sym_static] = ACTIONS(6529), + [anon_sym_auto] = ACTIONS(6529), + [anon_sym_register] = ACTIONS(6529), + [anon_sym_const] = ACTIONS(6529), + [anon_sym_restrict] = ACTIONS(6529), + [anon_sym_volatile] = ACTIONS(6529), + [sym_function_specifier] = ACTIONS(6529), + [anon_sym_unsigned] = ACTIONS(6529), + [anon_sym_long] = ACTIONS(6529), + [anon_sym_short] = ACTIONS(6529), + [anon_sym_enum] = ACTIONS(6529), + [anon_sym_struct] = ACTIONS(6529), + [anon_sym_union] = ACTIONS(6529), + [anon_sym_if] = ACTIONS(6529), + [anon_sym_else] = ACTIONS(6543), + [anon_sym_switch] = ACTIONS(6529), + [anon_sym_case] = ACTIONS(6529), + [anon_sym_default] = ACTIONS(6529), + [anon_sym_while] = ACTIONS(6529), + [anon_sym_do] = ACTIONS(6529), + [anon_sym_for] = ACTIONS(6529), + [anon_sym_return] = ACTIONS(6529), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6529), + [anon_sym_goto] = ACTIONS(6529), + [anon_sym_AMP] = ACTIONS(6522), + [anon_sym_BANG] = ACTIONS(6522), + [anon_sym_TILDE] = ACTIONS(6522), + [anon_sym_PLUS] = ACTIONS(6529), + [anon_sym_DASH] = ACTIONS(6529), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_sizeof] = ACTIONS(6529), + [sym_number_literal] = ACTIONS(6529), + [sym_char_literal] = ACTIONS(6529), + [sym_string_literal] = ACTIONS(6522), + [sym_identifier] = ACTIONS(6536), [sym_comment] = ACTIONS(121), }, [1270] = { - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_compound_statement] = STATE(1342), + [sym_labeled_statement] = STATE(1342), + [sym_expression_statement] = STATE(1342), + [sym_if_statement] = STATE(1342), + [sym_switch_statement] = STATE(1342), + [sym_case_statement] = STATE(1342), + [sym_while_statement] = STATE(1342), + [sym_do_statement] = STATE(1342), + [sym_for_statement] = STATE(1342), + [sym_return_statement] = STATE(1342), + [sym_break_statement] = STATE(1342), + [sym_continue_statement] = STATE(1342), + [sym_goto_statement] = STATE(1342), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1271] = { - [anon_sym_RPAREN] = ACTIONS(6070), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1345), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(6551), + [anon_sym_SEMI] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(4311), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_LT_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_GT_EQ] = ACTIONS(4313), + [anon_sym_AMP_EQ] = ACTIONS(4313), + [anon_sym_CARET_EQ] = ACTIONS(4313), + [anon_sym_PIPE_EQ] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4317), + [anon_sym_AMP_AMP] = ACTIONS(4317), + [anon_sym_PIPE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_LT_LT] = ACTIONS(4325), + [anon_sym_GT_GT] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1272] = { - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4807), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(6555), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_QMARK] = ACTIONS(4822), + [anon_sym_STAR_EQ] = ACTIONS(4825), + [anon_sym_SLASH_EQ] = ACTIONS(4825), + [anon_sym_PERCENT_EQ] = ACTIONS(4825), + [anon_sym_PLUS_EQ] = ACTIONS(4825), + [anon_sym_DASH_EQ] = ACTIONS(4825), + [anon_sym_LT_LT_EQ] = ACTIONS(4825), + [anon_sym_GT_GT_EQ] = ACTIONS(4825), + [anon_sym_AMP_EQ] = ACTIONS(4825), + [anon_sym_CARET_EQ] = ACTIONS(4825), + [anon_sym_PIPE_EQ] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_CARET] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4843), + [anon_sym_GT_GT] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4852), [sym_comment] = ACTIONS(121), }, [1273] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5887), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(6072), - [anon_sym_LBRACK] = ACTIONS(5893), - [anon_sym_EQ] = ACTIONS(6075), - [anon_sym_QMARK] = ACTIONS(6078), - [anon_sym_STAR_EQ] = ACTIONS(6081), - [anon_sym_SLASH_EQ] = ACTIONS(6081), - [anon_sym_PERCENT_EQ] = ACTIONS(6081), - [anon_sym_PLUS_EQ] = ACTIONS(6081), - [anon_sym_DASH_EQ] = ACTIONS(6081), - [anon_sym_LT_LT_EQ] = ACTIONS(6081), - [anon_sym_GT_GT_EQ] = ACTIONS(6081), - [anon_sym_AMP_EQ] = ACTIONS(6081), - [anon_sym_CARET_EQ] = ACTIONS(6081), - [anon_sym_PIPE_EQ] = ACTIONS(6081), - [anon_sym_AMP] = ACTIONS(6084), - [anon_sym_PIPE_PIPE] = ACTIONS(6087), - [anon_sym_AMP_AMP] = ACTIONS(6087), - [anon_sym_PIPE] = ACTIONS(6084), - [anon_sym_CARET] = ACTIONS(6084), - [anon_sym_EQ_EQ] = ACTIONS(6090), - [anon_sym_BANG_EQ] = ACTIONS(6090), - [anon_sym_LT] = ACTIONS(6093), - [anon_sym_GT] = ACTIONS(6093), - [anon_sym_LT_EQ] = ACTIONS(6096), - [anon_sym_GT_EQ] = ACTIONS(6096), - [anon_sym_LT_LT] = ACTIONS(6099), - [anon_sym_GT_GT] = ACTIONS(6099), - [anon_sym_PLUS] = ACTIONS(6072), - [anon_sym_DASH] = ACTIONS(6072), - [anon_sym_SLASH] = ACTIONS(6072), - [anon_sym_PERCENT] = ACTIONS(6072), - [anon_sym_DASH_DASH] = ACTIONS(5923), - [anon_sym_PLUS_PLUS] = ACTIONS(5923), - [anon_sym_DOT] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(6558), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(6564), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(6567), + [anon_sym_COLON] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(6570), + [anon_sym_STAR_EQ] = ACTIONS(6573), + [anon_sym_SLASH_EQ] = ACTIONS(6573), + [anon_sym_PERCENT_EQ] = ACTIONS(6573), + [anon_sym_PLUS_EQ] = ACTIONS(6573), + [anon_sym_DASH_EQ] = ACTIONS(6573), + [anon_sym_LT_LT_EQ] = ACTIONS(6573), + [anon_sym_GT_GT_EQ] = ACTIONS(6573), + [anon_sym_AMP_EQ] = ACTIONS(6573), + [anon_sym_CARET_EQ] = ACTIONS(6573), + [anon_sym_PIPE_EQ] = ACTIONS(6573), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6579), + [anon_sym_AMP_AMP] = ACTIONS(6579), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6582), + [anon_sym_BANG_EQ] = ACTIONS(6582), + [anon_sym_LT] = ACTIONS(6585), + [anon_sym_GT] = ACTIONS(6585), + [anon_sym_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_LT] = ACTIONS(6591), + [anon_sym_GT_GT] = ACTIONS(6591), + [anon_sym_PLUS] = ACTIONS(6594), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6561), + [anon_sym_PERCENT] = ACTIONS(6561), + [anon_sym_DASH_DASH] = ACTIONS(6597), + [anon_sym_PLUS_PLUS] = ACTIONS(6597), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [sym_comment] = ACTIONS(121), }, [1274] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1271), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(4496), + [anon_sym_COLON] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_STAR_EQ] = ACTIONS(4502), + [anon_sym_SLASH_EQ] = ACTIONS(4502), + [anon_sym_PERCENT_EQ] = ACTIONS(4502), + [anon_sym_PLUS_EQ] = ACTIONS(4502), + [anon_sym_DASH_EQ] = ACTIONS(4502), + [anon_sym_LT_LT_EQ] = ACTIONS(4502), + [anon_sym_GT_GT_EQ] = ACTIONS(4502), + [anon_sym_AMP_EQ] = ACTIONS(4502), + [anon_sym_CARET_EQ] = ACTIONS(4502), + [anon_sym_PIPE_EQ] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4508), + [anon_sym_AMP_AMP] = ACTIONS(4508), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4511), + [anon_sym_BANG_EQ] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4520), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4490), + [anon_sym_PERCENT] = ACTIONS(4490), + [anon_sym_DASH_DASH] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4529), [sym_comment] = ACTIONS(121), }, [1275] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(6102), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(6105), - [anon_sym_QMARK] = ACTIONS(6108), - [anon_sym_STAR_EQ] = ACTIONS(6111), - [anon_sym_SLASH_EQ] = ACTIONS(6111), - [anon_sym_PERCENT_EQ] = ACTIONS(6111), - [anon_sym_PLUS_EQ] = ACTIONS(6111), - [anon_sym_DASH_EQ] = ACTIONS(6111), - [anon_sym_LT_LT_EQ] = ACTIONS(6111), - [anon_sym_GT_GT_EQ] = ACTIONS(6111), - [anon_sym_AMP_EQ] = ACTIONS(6111), - [anon_sym_CARET_EQ] = ACTIONS(6111), - [anon_sym_PIPE_EQ] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6114), - [anon_sym_PIPE_PIPE] = ACTIONS(6117), - [anon_sym_AMP_AMP] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6114), - [anon_sym_CARET] = ACTIONS(6114), - [anon_sym_EQ_EQ] = ACTIONS(6120), - [anon_sym_BANG_EQ] = ACTIONS(6120), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_LT_EQ] = ACTIONS(6126), - [anon_sym_GT_EQ] = ACTIONS(6126), - [anon_sym_LT_LT] = ACTIONS(6129), - [anon_sym_GT_GT] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6102), - [anon_sym_DASH] = ACTIONS(6102), - [anon_sym_SLASH] = ACTIONS(6102), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_DASH_GT] = ACTIONS(5036), + [ts_builtin_sym_end] = ACTIONS(6603), + [sym__pound_include] = ACTIONS(6606), + [sym__pound_define] = ACTIONS(6606), + [sym__pound_if] = ACTIONS(6606), + [sym__pound_ifdef] = ACTIONS(6606), + [sym__pound_endif] = ACTIONS(6606), + [sym__pound_else] = ACTIONS(6606), + [sym_preproc_directive] = ACTIONS(6609), + [anon_sym_extern] = ACTIONS(6606), + [anon_sym_RBRACE] = ACTIONS(6603), + [anon_sym_typedef] = ACTIONS(6606), + [anon_sym_static] = ACTIONS(6606), + [anon_sym_auto] = ACTIONS(6606), + [anon_sym_register] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [sym_function_specifier] = ACTIONS(6606), + [anon_sym_unsigned] = ACTIONS(6606), + [anon_sym_long] = ACTIONS(6606), + [anon_sym_short] = ACTIONS(6606), + [anon_sym_enum] = ACTIONS(6606), + [anon_sym_struct] = ACTIONS(6606), + [anon_sym_union] = ACTIONS(6606), + [sym_identifier] = ACTIONS(6609), [sym_comment] = ACTIONS(121), }, [1276] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(6132), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_QMARK] = ACTIONS(6138), - [anon_sym_STAR_EQ] = ACTIONS(6141), - [anon_sym_SLASH_EQ] = ACTIONS(6141), - [anon_sym_PERCENT_EQ] = ACTIONS(6141), - [anon_sym_PLUS_EQ] = ACTIONS(6141), - [anon_sym_DASH_EQ] = ACTIONS(6141), - [anon_sym_LT_LT_EQ] = ACTIONS(6141), - [anon_sym_GT_GT_EQ] = ACTIONS(6141), - [anon_sym_AMP_EQ] = ACTIONS(6141), - [anon_sym_CARET_EQ] = ACTIONS(6141), - [anon_sym_PIPE_EQ] = ACTIONS(6141), - [anon_sym_AMP] = ACTIONS(6144), - [anon_sym_PIPE_PIPE] = ACTIONS(6147), - [anon_sym_AMP_AMP] = ACTIONS(6147), - [anon_sym_PIPE] = ACTIONS(6144), - [anon_sym_CARET] = ACTIONS(6144), - [anon_sym_EQ_EQ] = ACTIONS(6150), - [anon_sym_BANG_EQ] = ACTIONS(6150), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_LT_EQ] = ACTIONS(6156), - [anon_sym_GT_EQ] = ACTIONS(6156), - [anon_sym_LT_LT] = ACTIONS(6159), - [anon_sym_GT_GT] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6132), - [anon_sym_DASH] = ACTIONS(6132), - [anon_sym_SLASH] = ACTIONS(6132), - [anon_sym_PERCENT] = ACTIONS(6132), - [anon_sym_DASH_DASH] = ACTIONS(5123), - [anon_sym_PLUS_PLUS] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), + [sym__expression] = STATE(1346), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1277] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(6162), - [anon_sym_LBRACK] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(6165), - [anon_sym_QMARK] = ACTIONS(6168), - [anon_sym_STAR_EQ] = ACTIONS(6171), - [anon_sym_SLASH_EQ] = ACTIONS(6171), - [anon_sym_PERCENT_EQ] = ACTIONS(6171), - [anon_sym_PLUS_EQ] = ACTIONS(6171), - [anon_sym_DASH_EQ] = ACTIONS(6171), - [anon_sym_LT_LT_EQ] = ACTIONS(6171), - [anon_sym_GT_GT_EQ] = ACTIONS(6171), - [anon_sym_AMP_EQ] = ACTIONS(6171), - [anon_sym_CARET_EQ] = ACTIONS(6171), - [anon_sym_PIPE_EQ] = ACTIONS(6171), - [anon_sym_AMP] = ACTIONS(6174), - [anon_sym_PIPE_PIPE] = ACTIONS(6177), - [anon_sym_AMP_AMP] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6174), - [anon_sym_CARET] = ACTIONS(6174), - [anon_sym_EQ_EQ] = ACTIONS(6180), - [anon_sym_BANG_EQ] = ACTIONS(6180), - [anon_sym_LT] = ACTIONS(6183), - [anon_sym_GT] = ACTIONS(6183), - [anon_sym_LT_EQ] = ACTIONS(6186), - [anon_sym_GT_EQ] = ACTIONS(6186), - [anon_sym_LT_LT] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6189), - [anon_sym_PLUS] = ACTIONS(6162), - [anon_sym_DASH] = ACTIONS(6162), - [anon_sym_SLASH] = ACTIONS(6162), - [anon_sym_PERCENT] = ACTIONS(6162), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6028), - [anon_sym_DASH_GT] = ACTIONS(6028), + [sym__expression] = STATE(1347), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1278] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1376), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1279] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(6192), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_QMARK] = ACTIONS(6198), - [anon_sym_STAR_EQ] = ACTIONS(6201), - [anon_sym_SLASH_EQ] = ACTIONS(6201), - [anon_sym_PERCENT_EQ] = ACTIONS(6201), - [anon_sym_PLUS_EQ] = ACTIONS(6201), - [anon_sym_DASH_EQ] = ACTIONS(6201), - [anon_sym_LT_LT_EQ] = ACTIONS(6201), - [anon_sym_GT_GT_EQ] = ACTIONS(6201), - [anon_sym_AMP_EQ] = ACTIONS(6201), - [anon_sym_CARET_EQ] = ACTIONS(6201), - [anon_sym_PIPE_EQ] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6204), - [anon_sym_PIPE_PIPE] = ACTIONS(6207), - [anon_sym_AMP_AMP] = ACTIONS(6207), - [anon_sym_PIPE] = ACTIONS(6204), - [anon_sym_CARET] = ACTIONS(6204), - [anon_sym_EQ_EQ] = ACTIONS(6210), - [anon_sym_BANG_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_LT_EQ] = ACTIONS(6216), - [anon_sym_GT_EQ] = ACTIONS(6216), - [anon_sym_LT_LT] = ACTIONS(6219), - [anon_sym_GT_GT] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6192), - [anon_sym_DASH] = ACTIONS(6192), - [anon_sym_SLASH] = ACTIONS(6192), - [anon_sym_PERCENT] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5461), - [anon_sym_DASH_GT] = ACTIONS(5461), + [sym_declaration] = STATE(441), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(441), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6614), [sym_comment] = ACTIONS(121), }, [1280] = { - [sym__expression] = STATE(1377), - [sym_comma_expression] = STATE(336), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1350), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1281] = { - [sym__expression] = STATE(1378), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_declaration] = STATE(1351), + [sym__declaration_specifiers] = STATE(442), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym__expression] = STATE(1352), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(1249), [sym_comment] = ACTIONS(121), }, [1282] = { - [sym__expression] = STATE(1379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1283] = { - [sym__expression] = STATE(1380), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(6620), + [sym__pound_include] = ACTIONS(6623), + [sym__pound_define] = ACTIONS(6623), + [sym__pound_if] = ACTIONS(6623), + [sym__pound_ifdef] = ACTIONS(6623), + [sym__pound_endif] = ACTIONS(6623), + [sym__pound_else] = ACTIONS(6623), + [sym_preproc_directive] = ACTIONS(6626), + [anon_sym_SEMI] = ACTIONS(6620), + [anon_sym_extern] = ACTIONS(6623), + [anon_sym_LBRACE] = ACTIONS(6620), + [anon_sym_RBRACE] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_typedef] = ACTIONS(6623), + [anon_sym_static] = ACTIONS(6623), + [anon_sym_auto] = ACTIONS(6623), + [anon_sym_register] = ACTIONS(6623), + [anon_sym_const] = ACTIONS(6623), + [anon_sym_restrict] = ACTIONS(6623), + [anon_sym_volatile] = ACTIONS(6623), + [sym_function_specifier] = ACTIONS(6623), + [anon_sym_unsigned] = ACTIONS(6623), + [anon_sym_long] = ACTIONS(6623), + [anon_sym_short] = ACTIONS(6623), + [anon_sym_enum] = ACTIONS(6623), + [anon_sym_struct] = ACTIONS(6623), + [anon_sym_union] = ACTIONS(6623), + [anon_sym_if] = ACTIONS(6623), + [anon_sym_switch] = ACTIONS(6623), + [anon_sym_case] = ACTIONS(6623), + [anon_sym_default] = ACTIONS(6623), + [anon_sym_while] = ACTIONS(6623), + [anon_sym_do] = ACTIONS(6623), + [anon_sym_for] = ACTIONS(6623), + [anon_sym_return] = ACTIONS(6623), + [anon_sym_break] = ACTIONS(6623), + [anon_sym_continue] = ACTIONS(6623), + [anon_sym_goto] = ACTIONS(6623), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_BANG] = ACTIONS(6620), + [anon_sym_TILDE] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6623), + [anon_sym_DASH_DASH] = ACTIONS(6620), + [anon_sym_PLUS_PLUS] = ACTIONS(6620), + [anon_sym_sizeof] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [sym_char_literal] = ACTIONS(6623), + [sym_string_literal] = ACTIONS(6620), + [sym_identifier] = ACTIONS(6626), [sym_comment] = ACTIONS(121), }, [1284] = { - [sym__expression] = STATE(1381), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(6629), + [sym__pound_include] = ACTIONS(6633), + [sym__pound_define] = ACTIONS(6633), + [sym__pound_if] = ACTIONS(6633), + [sym__pound_ifdef] = ACTIONS(6633), + [sym__pound_endif] = ACTIONS(6633), + [sym__pound_else] = ACTIONS(6633), + [sym_preproc_directive] = ACTIONS(6637), + [anon_sym_SEMI] = ACTIONS(6629), + [anon_sym_extern] = ACTIONS(6633), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_RBRACE] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_typedef] = ACTIONS(6633), + [anon_sym_static] = ACTIONS(6633), + [anon_sym_auto] = ACTIONS(6633), + [anon_sym_register] = ACTIONS(6633), + [anon_sym_const] = ACTIONS(6633), + [anon_sym_restrict] = ACTIONS(6633), + [anon_sym_volatile] = ACTIONS(6633), + [sym_function_specifier] = ACTIONS(6633), + [anon_sym_unsigned] = ACTIONS(6633), + [anon_sym_long] = ACTIONS(6633), + [anon_sym_short] = ACTIONS(6633), + [anon_sym_enum] = ACTIONS(6633), + [anon_sym_struct] = ACTIONS(6633), + [anon_sym_union] = ACTIONS(6633), + [anon_sym_if] = ACTIONS(6633), + [anon_sym_else] = ACTIONS(6633), + [anon_sym_switch] = ACTIONS(6633), + [anon_sym_case] = ACTIONS(6633), + [anon_sym_default] = ACTIONS(6633), + [anon_sym_while] = ACTIONS(6633), + [anon_sym_do] = ACTIONS(6633), + [anon_sym_for] = ACTIONS(6633), + [anon_sym_return] = ACTIONS(6633), + [anon_sym_break] = ACTIONS(6633), + [anon_sym_continue] = ACTIONS(6633), + [anon_sym_goto] = ACTIONS(6633), + [anon_sym_AMP] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6629), + [anon_sym_TILDE] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6633), + [anon_sym_DASH] = ACTIONS(6633), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_sizeof] = ACTIONS(6633), + [sym_number_literal] = ACTIONS(6633), + [sym_char_literal] = ACTIONS(6633), + [sym_string_literal] = ACTIONS(6629), + [sym_identifier] = ACTIONS(6637), [sym_comment] = ACTIONS(121), }, [1285] = { - [sym__expression] = STATE(1382), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(4783), + [anon_sym_RBRACE] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1286] = { - [sym__expression] = STATE(1383), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(4783), + [anon_sym_RBRACE] = ACTIONS(4783), [sym_comment] = ACTIONS(121), }, [1287] = { - [sym__expression] = STATE(1384), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1354), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1288] = { - [sym__expression] = STATE(1385), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(6641), [sym_comment] = ACTIONS(121), }, [1289] = { - [anon_sym_RPAREN] = ACTIONS(6222), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(6643), + [anon_sym_RPAREN] = ACTIONS(6519), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1290] = { - [sym__declarator] = STATE(62), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1301), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(6646), + [sym__pound_include] = ACTIONS(6650), + [sym__pound_define] = ACTIONS(6650), + [sym__pound_if] = ACTIONS(6650), + [sym__pound_ifdef] = ACTIONS(6650), + [sym__pound_endif] = ACTIONS(6650), + [sym__pound_else] = ACTIONS(6650), + [sym_preproc_directive] = ACTIONS(6654), + [anon_sym_SEMI] = ACTIONS(6646), + [anon_sym_extern] = ACTIONS(6650), + [anon_sym_LBRACE] = ACTIONS(6646), + [anon_sym_RBRACE] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6646), + [anon_sym_typedef] = ACTIONS(6650), + [anon_sym_static] = ACTIONS(6650), + [anon_sym_auto] = ACTIONS(6650), + [anon_sym_register] = ACTIONS(6650), + [anon_sym_const] = ACTIONS(6650), + [anon_sym_restrict] = ACTIONS(6650), + [anon_sym_volatile] = ACTIONS(6650), + [sym_function_specifier] = ACTIONS(6650), + [anon_sym_unsigned] = ACTIONS(6650), + [anon_sym_long] = ACTIONS(6650), + [anon_sym_short] = ACTIONS(6650), + [anon_sym_enum] = ACTIONS(6650), + [anon_sym_struct] = ACTIONS(6650), + [anon_sym_union] = ACTIONS(6650), + [anon_sym_if] = ACTIONS(6650), + [anon_sym_else] = ACTIONS(6658), + [anon_sym_switch] = ACTIONS(6650), + [anon_sym_case] = ACTIONS(6650), + [anon_sym_default] = ACTIONS(6650), + [anon_sym_while] = ACTIONS(6650), + [anon_sym_do] = ACTIONS(6650), + [anon_sym_for] = ACTIONS(6650), + [anon_sym_return] = ACTIONS(6650), + [anon_sym_break] = ACTIONS(6650), + [anon_sym_continue] = ACTIONS(6650), + [anon_sym_goto] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6646), + [anon_sym_BANG] = ACTIONS(6646), + [anon_sym_TILDE] = ACTIONS(6646), + [anon_sym_PLUS] = ACTIONS(6650), + [anon_sym_DASH] = ACTIONS(6650), + [anon_sym_DASH_DASH] = ACTIONS(6646), + [anon_sym_PLUS_PLUS] = ACTIONS(6646), + [anon_sym_sizeof] = ACTIONS(6650), + [sym_number_literal] = ACTIONS(6650), + [sym_char_literal] = ACTIONS(6650), + [sym_string_literal] = ACTIONS(6646), + [sym_identifier] = ACTIONS(6654), [sym_comment] = ACTIONS(121), }, [1291] = { - [ts_builtin_sym_end] = ACTIONS(594), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(6224), - [anon_sym_COMMA] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(596), - [sym_preproc_directive] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(6224), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(6224), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACK] = ACTIONS(1608), - [anon_sym_EQ] = ACTIONS(1610), - [anon_sym_typedef] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_auto] = ACTIONS(596), - [anon_sym_register] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_restrict] = ACTIONS(596), - [anon_sym_volatile] = ACTIONS(596), - [sym_function_specifier] = ACTIONS(596), - [anon_sym_unsigned] = ACTIONS(596), - [anon_sym_long] = ACTIONS(596), - [anon_sym_short] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(596), - [anon_sym_else] = ACTIONS(596), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_do] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_STAR_EQ] = ACTIONS(1608), - [anon_sym_SLASH_EQ] = ACTIONS(1608), - [anon_sym_PERCENT_EQ] = ACTIONS(1608), - [anon_sym_PLUS_EQ] = ACTIONS(1608), - [anon_sym_DASH_EQ] = ACTIONS(1608), - [anon_sym_LT_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_GT_EQ] = ACTIONS(1608), - [anon_sym_AMP_EQ] = ACTIONS(1608), - [anon_sym_CARET_EQ] = ACTIONS(1608), - [anon_sym_PIPE_EQ] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(6227), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1608), - [anon_sym_LT_LT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(6224), - [anon_sym_PLUS_PLUS] = ACTIONS(6224), - [anon_sym_sizeof] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DASH_GT] = ACTIONS(1608), - [sym_number_literal] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [sym_string_literal] = ACTIONS(594), - [sym_identifier] = ACTIONS(598), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1292] = { - [sym__declarator] = STATE(84), - [sym_pointer_declarator] = STATE(44), - [sym_function_declarator] = STATE(44), - [sym_array_declarator] = STATE(44), - [sym__expression] = STATE(1304), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(259), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(6558), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(6663), + [anon_sym_LBRACK] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(6666), + [anon_sym_QMARK] = ACTIONS(6669), + [anon_sym_STAR_EQ] = ACTIONS(6672), + [anon_sym_SLASH_EQ] = ACTIONS(6672), + [anon_sym_PERCENT_EQ] = ACTIONS(6672), + [anon_sym_PLUS_EQ] = ACTIONS(6672), + [anon_sym_DASH_EQ] = ACTIONS(6672), + [anon_sym_LT_LT_EQ] = ACTIONS(6672), + [anon_sym_GT_GT_EQ] = ACTIONS(6672), + [anon_sym_AMP_EQ] = ACTIONS(6672), + [anon_sym_CARET_EQ] = ACTIONS(6672), + [anon_sym_PIPE_EQ] = ACTIONS(6672), + [anon_sym_AMP] = ACTIONS(6675), + [anon_sym_PIPE_PIPE] = ACTIONS(6678), + [anon_sym_AMP_AMP] = ACTIONS(6678), + [anon_sym_PIPE] = ACTIONS(6675), + [anon_sym_CARET] = ACTIONS(6675), + [anon_sym_EQ_EQ] = ACTIONS(6681), + [anon_sym_BANG_EQ] = ACTIONS(6681), + [anon_sym_LT] = ACTIONS(6684), + [anon_sym_GT] = ACTIONS(6684), + [anon_sym_LT_EQ] = ACTIONS(6687), + [anon_sym_GT_EQ] = ACTIONS(6687), + [anon_sym_LT_LT] = ACTIONS(6690), + [anon_sym_GT_GT] = ACTIONS(6690), + [anon_sym_PLUS] = ACTIONS(6663), + [anon_sym_DASH] = ACTIONS(6663), + [anon_sym_SLASH] = ACTIONS(6663), + [anon_sym_PERCENT] = ACTIONS(6663), + [anon_sym_DASH_DASH] = ACTIONS(6597), + [anon_sym_PLUS_PLUS] = ACTIONS(6597), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [sym_comment] = ACTIONS(121), }, [1293] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5887), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(6230), - [anon_sym_LBRACK] = ACTIONS(5893), - [anon_sym_RBRACK] = ACTIONS(616), - [anon_sym_EQ] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(616), - [anon_sym_QMARK] = ACTIONS(6236), - [anon_sym_STAR_EQ] = ACTIONS(6239), - [anon_sym_SLASH_EQ] = ACTIONS(6239), - [anon_sym_PERCENT_EQ] = ACTIONS(6239), - [anon_sym_PLUS_EQ] = ACTIONS(6239), - [anon_sym_DASH_EQ] = ACTIONS(6239), - [anon_sym_LT_LT_EQ] = ACTIONS(6239), - [anon_sym_GT_GT_EQ] = ACTIONS(6239), - [anon_sym_AMP_EQ] = ACTIONS(6239), - [anon_sym_CARET_EQ] = ACTIONS(6239), - [anon_sym_PIPE_EQ] = ACTIONS(6239), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6245), - [anon_sym_AMP_AMP] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_LT] = ACTIONS(6251), - [anon_sym_GT] = ACTIONS(6251), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6257), - [anon_sym_GT_GT] = ACTIONS(6257), - [anon_sym_PLUS] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6260), - [anon_sym_SLASH] = ACTIONS(6230), - [anon_sym_PERCENT] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(5923), - [anon_sym_PLUS_PLUS] = ACTIONS(5923), - [anon_sym_DOT] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(6693), + [anon_sym_LBRACK] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_QMARK] = ACTIONS(6699), + [anon_sym_STAR_EQ] = ACTIONS(6702), + [anon_sym_SLASH_EQ] = ACTIONS(6702), + [anon_sym_PERCENT_EQ] = ACTIONS(6702), + [anon_sym_PLUS_EQ] = ACTIONS(6702), + [anon_sym_DASH_EQ] = ACTIONS(6702), + [anon_sym_LT_LT_EQ] = ACTIONS(6702), + [anon_sym_GT_GT_EQ] = ACTIONS(6702), + [anon_sym_AMP_EQ] = ACTIONS(6702), + [anon_sym_CARET_EQ] = ACTIONS(6702), + [anon_sym_PIPE_EQ] = ACTIONS(6702), + [anon_sym_AMP] = ACTIONS(6705), + [anon_sym_PIPE_PIPE] = ACTIONS(6708), + [anon_sym_AMP_AMP] = ACTIONS(6708), + [anon_sym_PIPE] = ACTIONS(6705), + [anon_sym_CARET] = ACTIONS(6705), + [anon_sym_EQ_EQ] = ACTIONS(6711), + [anon_sym_BANG_EQ] = ACTIONS(6711), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_LT_EQ] = ACTIONS(6717), + [anon_sym_GT_EQ] = ACTIONS(6717), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6693), + [anon_sym_DASH] = ACTIONS(6693), + [anon_sym_SLASH] = ACTIONS(6693), + [anon_sym_PERCENT] = ACTIONS(6693), + [anon_sym_DASH_DASH] = ACTIONS(4773), + [anon_sym_PLUS_PLUS] = ACTIONS(4773), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_DASH_GT] = ACTIONS(4776), [sym_comment] = ACTIONS(121), }, [1294] = { - [sym__expression] = STATE(1387), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(6723), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1295] = { - [ts_builtin_sym_end] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(6267), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(6267), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(6267), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(6267), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(6267), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(6267), - [sym_preproc_directive] = ACTIONS(6271), - [anon_sym_SEMI] = ACTIONS(6263), - [anon_sym_extern] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(6263), - [anon_sym_RBRACE] = ACTIONS(6263), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_typedef] = ACTIONS(6267), - [anon_sym_static] = ACTIONS(6267), - [anon_sym_auto] = ACTIONS(6267), - [anon_sym_register] = ACTIONS(6267), - [anon_sym_const] = ACTIONS(6267), - [anon_sym_restrict] = ACTIONS(6267), - [anon_sym_volatile] = ACTIONS(6267), - [sym_function_specifier] = ACTIONS(6267), - [anon_sym_unsigned] = ACTIONS(6267), - [anon_sym_long] = ACTIONS(6267), - [anon_sym_short] = ACTIONS(6267), - [anon_sym_enum] = ACTIONS(6267), - [anon_sym_struct] = ACTIONS(6267), - [anon_sym_union] = ACTIONS(6267), - [anon_sym_if] = ACTIONS(6267), - [anon_sym_else] = ACTIONS(6267), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6267), - [anon_sym_default] = ACTIONS(6267), - [anon_sym_while] = ACTIONS(6267), - [anon_sym_do] = ACTIONS(6267), - [anon_sym_for] = ACTIONS(6267), - [anon_sym_return] = ACTIONS(6267), - [anon_sym_break] = ACTIONS(6267), - [anon_sym_continue] = ACTIONS(6267), - [anon_sym_goto] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6263), - [anon_sym_BANG] = ACTIONS(6263), - [anon_sym_TILDE] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_DASH_DASH] = ACTIONS(6263), - [anon_sym_PLUS_PLUS] = ACTIONS(6263), - [anon_sym_sizeof] = ACTIONS(6267), - [sym_number_literal] = ACTIONS(6267), - [sym_char_literal] = ACTIONS(6267), - [sym_string_literal] = ACTIONS(6263), - [sym_identifier] = ACTIONS(6271), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(6725), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(6728), + [anon_sym_QMARK] = ACTIONS(6731), + [anon_sym_STAR_EQ] = ACTIONS(6734), + [anon_sym_SLASH_EQ] = ACTIONS(6734), + [anon_sym_PERCENT_EQ] = ACTIONS(6734), + [anon_sym_PLUS_EQ] = ACTIONS(6734), + [anon_sym_DASH_EQ] = ACTIONS(6734), + [anon_sym_LT_LT_EQ] = ACTIONS(6734), + [anon_sym_GT_GT_EQ] = ACTIONS(6734), + [anon_sym_AMP_EQ] = ACTIONS(6734), + [anon_sym_CARET_EQ] = ACTIONS(6734), + [anon_sym_PIPE_EQ] = ACTIONS(6734), + [anon_sym_AMP] = ACTIONS(6737), + [anon_sym_PIPE_PIPE] = ACTIONS(6740), + [anon_sym_AMP_AMP] = ACTIONS(6740), + [anon_sym_PIPE] = ACTIONS(6737), + [anon_sym_CARET] = ACTIONS(6737), + [anon_sym_EQ_EQ] = ACTIONS(6743), + [anon_sym_BANG_EQ] = ACTIONS(6743), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6749), + [anon_sym_GT_EQ] = ACTIONS(6749), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6725), + [anon_sym_DASH] = ACTIONS(6725), + [anon_sym_SLASH] = ACTIONS(6725), + [anon_sym_PERCENT] = ACTIONS(6725), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), [sym_comment] = ACTIONS(121), }, [1296] = { - [sym_compound_statement] = STATE(1388), - [sym_labeled_statement] = STATE(1388), - [sym_expression_statement] = STATE(1388), - [sym_if_statement] = STATE(1388), - [sym_switch_statement] = STATE(1388), - [sym_case_statement] = STATE(1388), - [sym_while_statement] = STATE(1388), - [sym_do_statement] = STATE(1388), - [sym_for_statement] = STATE(1388), - [sym_return_statement] = STATE(1388), - [sym_break_statement] = STATE(1388), - [sym_continue_statement] = STATE(1388), - [sym_goto_statement] = STATE(1388), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_EQ] = ACTIONS(6758), + [anon_sym_QMARK] = ACTIONS(6761), + [anon_sym_STAR_EQ] = ACTIONS(6764), + [anon_sym_SLASH_EQ] = ACTIONS(6764), + [anon_sym_PERCENT_EQ] = ACTIONS(6764), + [anon_sym_PLUS_EQ] = ACTIONS(6764), + [anon_sym_DASH_EQ] = ACTIONS(6764), + [anon_sym_LT_LT_EQ] = ACTIONS(6764), + [anon_sym_GT_GT_EQ] = ACTIONS(6764), + [anon_sym_AMP_EQ] = ACTIONS(6764), + [anon_sym_CARET_EQ] = ACTIONS(6764), + [anon_sym_PIPE_EQ] = ACTIONS(6764), + [anon_sym_AMP] = ACTIONS(6767), + [anon_sym_PIPE_PIPE] = ACTIONS(6770), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(6767), + [anon_sym_CARET] = ACTIONS(6767), + [anon_sym_EQ_EQ] = ACTIONS(6773), + [anon_sym_BANG_EQ] = ACTIONS(6773), + [anon_sym_LT] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_LT] = ACTIONS(6782), + [anon_sym_GT_GT] = ACTIONS(6782), + [anon_sym_PLUS] = ACTIONS(6755), + [anon_sym_DASH] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6755), + [anon_sym_PERCENT] = ACTIONS(6755), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5015), [sym_comment] = ACTIONS(121), }, [1297] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1389), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(5672), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(6788), + [anon_sym_QMARK] = ACTIONS(6791), + [anon_sym_STAR_EQ] = ACTIONS(6794), + [anon_sym_SLASH_EQ] = ACTIONS(6794), + [anon_sym_PERCENT_EQ] = ACTIONS(6794), + [anon_sym_PLUS_EQ] = ACTIONS(6794), + [anon_sym_DASH_EQ] = ACTIONS(6794), + [anon_sym_LT_LT_EQ] = ACTIONS(6794), + [anon_sym_GT_GT_EQ] = ACTIONS(6794), + [anon_sym_AMP_EQ] = ACTIONS(6794), + [anon_sym_CARET_EQ] = ACTIONS(6794), + [anon_sym_PIPE_EQ] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6797), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6797), + [anon_sym_CARET] = ACTIONS(6797), + [anon_sym_EQ_EQ] = ACTIONS(6803), + [anon_sym_BANG_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6806), + [anon_sym_GT] = ACTIONS(6806), + [anon_sym_LT_EQ] = ACTIONS(6809), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), [sym_comment] = ACTIONS(121), }, [1298] = { - [sym_compound_statement] = STATE(1390), - [sym_labeled_statement] = STATE(1390), - [sym_expression_statement] = STATE(1390), - [sym_if_statement] = STATE(1390), - [sym_switch_statement] = STATE(1390), - [sym_case_statement] = STATE(1390), - [sym_while_statement] = STATE(1390), - [sym_do_statement] = STATE(1390), - [sym_for_statement] = STATE(1390), - [sym_return_statement] = STATE(1390), - [sym_break_statement] = STATE(1390), - [sym_continue_statement] = STATE(1390), - [sym_goto_statement] = STATE(1390), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(6818), + [anon_sym_QMARK] = ACTIONS(6821), + [anon_sym_STAR_EQ] = ACTIONS(6824), + [anon_sym_SLASH_EQ] = ACTIONS(6824), + [anon_sym_PERCENT_EQ] = ACTIONS(6824), + [anon_sym_PLUS_EQ] = ACTIONS(6824), + [anon_sym_DASH_EQ] = ACTIONS(6824), + [anon_sym_LT_LT_EQ] = ACTIONS(6824), + [anon_sym_GT_GT_EQ] = ACTIONS(6824), + [anon_sym_AMP_EQ] = ACTIONS(6824), + [anon_sym_CARET_EQ] = ACTIONS(6824), + [anon_sym_PIPE_EQ] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6830), + [anon_sym_AMP_AMP] = ACTIONS(6830), + [anon_sym_PIPE] = ACTIONS(6827), + [anon_sym_CARET] = ACTIONS(6827), + [anon_sym_EQ_EQ] = ACTIONS(6833), + [anon_sym_BANG_EQ] = ACTIONS(6833), + [anon_sym_LT] = ACTIONS(6836), + [anon_sym_GT] = ACTIONS(6836), + [anon_sym_LT_EQ] = ACTIONS(6839), + [anon_sym_GT_EQ] = ACTIONS(6839), + [anon_sym_LT_LT] = ACTIONS(6842), + [anon_sym_GT_GT] = ACTIONS(6842), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(5237), + [anon_sym_PLUS_PLUS] = ACTIONS(5237), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_DASH_GT] = ACTIONS(5240), [sym_comment] = ACTIONS(121), }, [1299] = { - [sym__expression] = STATE(1391), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(5672), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_LBRACK] = ACTIONS(5249), + [anon_sym_EQ] = ACTIONS(6848), + [anon_sym_QMARK] = ACTIONS(6851), + [anon_sym_STAR_EQ] = ACTIONS(6854), + [anon_sym_SLASH_EQ] = ACTIONS(6854), + [anon_sym_PERCENT_EQ] = ACTIONS(6854), + [anon_sym_PLUS_EQ] = ACTIONS(6854), + [anon_sym_DASH_EQ] = ACTIONS(6854), + [anon_sym_LT_LT_EQ] = ACTIONS(6854), + [anon_sym_GT_GT_EQ] = ACTIONS(6854), + [anon_sym_AMP_EQ] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(6854), + [anon_sym_AMP] = ACTIONS(6857), + [anon_sym_PIPE_PIPE] = ACTIONS(6860), + [anon_sym_AMP_AMP] = ACTIONS(6860), + [anon_sym_PIPE] = ACTIONS(6857), + [anon_sym_CARET] = ACTIONS(6857), + [anon_sym_EQ_EQ] = ACTIONS(6863), + [anon_sym_BANG_EQ] = ACTIONS(6863), + [anon_sym_LT] = ACTIONS(6866), + [anon_sym_GT] = ACTIONS(6866), + [anon_sym_LT_EQ] = ACTIONS(6869), + [anon_sym_GT_EQ] = ACTIONS(6869), + [anon_sym_LT_LT] = ACTIONS(6872), + [anon_sym_GT_GT] = ACTIONS(6872), + [anon_sym_PLUS] = ACTIONS(6845), + [anon_sym_DASH] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(6845), + [anon_sym_PERCENT] = ACTIONS(6845), + [anon_sym_DASH_DASH] = ACTIONS(5282), + [anon_sym_PLUS_PLUS] = ACTIONS(5282), + [anon_sym_DOT] = ACTIONS(5285), + [anon_sym_DASH_GT] = ACTIONS(5285), [sym_comment] = ACTIONS(121), }, [1300] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(6275), + [sym__expression] = STATE(1357), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1301] = { - [anon_sym_RPAREN] = ACTIONS(6277), + [anon_sym_RPAREN] = ACTIONS(6875), [sym_comment] = ACTIONS(121), }, [1302] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(596), - [sym_preproc_directive] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(6224), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_auto] = ACTIONS(596), - [anon_sym_register] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_restrict] = ACTIONS(596), - [anon_sym_volatile] = ACTIONS(596), - [sym_function_specifier] = ACTIONS(596), - [anon_sym_unsigned] = ACTIONS(596), - [anon_sym_long] = ACTIONS(596), - [anon_sym_short] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_if] = ACTIONS(596), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_do] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(594), - [anon_sym_PLUS_PLUS] = ACTIONS(594), - [anon_sym_sizeof] = ACTIONS(596), - [sym_number_literal] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [sym_string_literal] = ACTIONS(594), - [sym_identifier] = ACTIONS(598), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(6877), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(4311), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_LT_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_GT_EQ] = ACTIONS(4313), + [anon_sym_AMP_EQ] = ACTIONS(4313), + [anon_sym_CARET_EQ] = ACTIONS(4313), + [anon_sym_PIPE_EQ] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + [anon_sym_PIPE_PIPE] = ACTIONS(4317), + [anon_sym_AMP_AMP] = ACTIONS(4317), + [anon_sym_PIPE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_EQ_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_LT_LT] = ACTIONS(4325), + [anon_sym_GT_GT] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1303] = { - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4620), - [anon_sym_SEMI] = ACTIONS(4620), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(6558), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(6879), + [anon_sym_LBRACK] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(6882), + [anon_sym_QMARK] = ACTIONS(6885), + [anon_sym_STAR_EQ] = ACTIONS(6888), + [anon_sym_SLASH_EQ] = ACTIONS(6888), + [anon_sym_PERCENT_EQ] = ACTIONS(6888), + [anon_sym_PLUS_EQ] = ACTIONS(6888), + [anon_sym_DASH_EQ] = ACTIONS(6888), + [anon_sym_LT_LT_EQ] = ACTIONS(6888), + [anon_sym_GT_GT_EQ] = ACTIONS(6888), + [anon_sym_AMP_EQ] = ACTIONS(6888), + [anon_sym_CARET_EQ] = ACTIONS(6888), + [anon_sym_PIPE_EQ] = ACTIONS(6888), + [anon_sym_AMP] = ACTIONS(6891), + [anon_sym_PIPE_PIPE] = ACTIONS(6894), + [anon_sym_AMP_AMP] = ACTIONS(6894), + [anon_sym_PIPE] = ACTIONS(6891), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_EQ_EQ] = ACTIONS(6897), + [anon_sym_BANG_EQ] = ACTIONS(6897), + [anon_sym_LT] = ACTIONS(6900), + [anon_sym_GT] = ACTIONS(6900), + [anon_sym_LT_EQ] = ACTIONS(6903), + [anon_sym_GT_EQ] = ACTIONS(6903), + [anon_sym_LT_LT] = ACTIONS(6906), + [anon_sym_GT_GT] = ACTIONS(6906), + [anon_sym_PLUS] = ACTIONS(6879), + [anon_sym_DASH] = ACTIONS(6879), + [anon_sym_SLASH] = ACTIONS(6879), + [anon_sym_PERCENT] = ACTIONS(6879), + [anon_sym_DASH_DASH] = ACTIONS(6597), + [anon_sym_PLUS_PLUS] = ACTIONS(6597), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [sym_comment] = ACTIONS(121), }, [1304] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5887), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(6279), - [anon_sym_LBRACK] = ACTIONS(5893), - [anon_sym_EQ] = ACTIONS(6282), - [anon_sym_QMARK] = ACTIONS(6285), - [anon_sym_STAR_EQ] = ACTIONS(6288), - [anon_sym_SLASH_EQ] = ACTIONS(6288), - [anon_sym_PERCENT_EQ] = ACTIONS(6288), - [anon_sym_PLUS_EQ] = ACTIONS(6288), - [anon_sym_DASH_EQ] = ACTIONS(6288), - [anon_sym_LT_LT_EQ] = ACTIONS(6288), - [anon_sym_GT_GT_EQ] = ACTIONS(6288), - [anon_sym_AMP_EQ] = ACTIONS(6288), - [anon_sym_CARET_EQ] = ACTIONS(6288), - [anon_sym_PIPE_EQ] = ACTIONS(6288), - [anon_sym_AMP] = ACTIONS(6291), - [anon_sym_PIPE_PIPE] = ACTIONS(6294), - [anon_sym_AMP_AMP] = ACTIONS(6294), - [anon_sym_PIPE] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_EQ_EQ] = ACTIONS(6297), - [anon_sym_BANG_EQ] = ACTIONS(6297), - [anon_sym_LT] = ACTIONS(6300), - [anon_sym_GT] = ACTIONS(6300), - [anon_sym_LT_EQ] = ACTIONS(6303), - [anon_sym_GT_EQ] = ACTIONS(6303), - [anon_sym_LT_LT] = ACTIONS(6306), - [anon_sym_GT_GT] = ACTIONS(6306), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_PERCENT] = ACTIONS(6279), - [anon_sym_DASH_DASH] = ACTIONS(5923), - [anon_sym_PLUS_PLUS] = ACTIONS(5923), - [anon_sym_DOT] = ACTIONS(5926), - [anon_sym_DASH_GT] = ACTIONS(5926), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(6909), + [anon_sym_LBRACK] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_QMARK] = ACTIONS(6915), + [anon_sym_STAR_EQ] = ACTIONS(6918), + [anon_sym_SLASH_EQ] = ACTIONS(6918), + [anon_sym_PERCENT_EQ] = ACTIONS(6918), + [anon_sym_PLUS_EQ] = ACTIONS(6918), + [anon_sym_DASH_EQ] = ACTIONS(6918), + [anon_sym_LT_LT_EQ] = ACTIONS(6918), + [anon_sym_GT_GT_EQ] = ACTIONS(6918), + [anon_sym_AMP_EQ] = ACTIONS(6918), + [anon_sym_CARET_EQ] = ACTIONS(6918), + [anon_sym_PIPE_EQ] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_PIPE_PIPE] = ACTIONS(6924), + [anon_sym_AMP_AMP] = ACTIONS(6924), + [anon_sym_PIPE] = ACTIONS(6921), + [anon_sym_CARET] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6927), + [anon_sym_BANG_EQ] = ACTIONS(6927), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_LT_EQ] = ACTIONS(6933), + [anon_sym_GT_EQ] = ACTIONS(6933), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6909), + [anon_sym_DASH] = ACTIONS(6909), + [anon_sym_SLASH] = ACTIONS(6909), + [anon_sym_PERCENT] = ACTIONS(6909), + [anon_sym_DASH_DASH] = ACTIONS(4773), + [anon_sym_PLUS_PLUS] = ACTIONS(4773), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_DASH_GT] = ACTIONS(4776), [sym_comment] = ACTIONS(121), }, [1305] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1301), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(6939), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1306] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(6312), - [anon_sym_QMARK] = ACTIONS(6315), - [anon_sym_STAR_EQ] = ACTIONS(6318), - [anon_sym_SLASH_EQ] = ACTIONS(6318), - [anon_sym_PERCENT_EQ] = ACTIONS(6318), - [anon_sym_PLUS_EQ] = ACTIONS(6318), - [anon_sym_DASH_EQ] = ACTIONS(6318), - [anon_sym_LT_LT_EQ] = ACTIONS(6318), - [anon_sym_GT_GT_EQ] = ACTIONS(6318), - [anon_sym_AMP_EQ] = ACTIONS(6318), - [anon_sym_CARET_EQ] = ACTIONS(6318), - [anon_sym_PIPE_EQ] = ACTIONS(6318), - [anon_sym_AMP] = ACTIONS(6321), - [anon_sym_PIPE_PIPE] = ACTIONS(6324), - [anon_sym_AMP_AMP] = ACTIONS(6324), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6327), - [anon_sym_BANG_EQ] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6330), - [anon_sym_GT] = ACTIONS(6330), - [anon_sym_LT_EQ] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6333), - [anon_sym_LT_LT] = ACTIONS(6336), - [anon_sym_GT_GT] = ACTIONS(6336), - [anon_sym_PLUS] = ACTIONS(6309), - [anon_sym_DASH] = ACTIONS(6309), - [anon_sym_SLASH] = ACTIONS(6309), - [anon_sym_PERCENT] = ACTIONS(6309), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_DASH_GT] = ACTIONS(5036), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(6941), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_QMARK] = ACTIONS(6947), + [anon_sym_STAR_EQ] = ACTIONS(6950), + [anon_sym_SLASH_EQ] = ACTIONS(6950), + [anon_sym_PERCENT_EQ] = ACTIONS(6950), + [anon_sym_PLUS_EQ] = ACTIONS(6950), + [anon_sym_DASH_EQ] = ACTIONS(6950), + [anon_sym_LT_LT_EQ] = ACTIONS(6950), + [anon_sym_GT_GT_EQ] = ACTIONS(6950), + [anon_sym_AMP_EQ] = ACTIONS(6950), + [anon_sym_CARET_EQ] = ACTIONS(6950), + [anon_sym_PIPE_EQ] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6953), + [anon_sym_PIPE_PIPE] = ACTIONS(6956), + [anon_sym_AMP_AMP] = ACTIONS(6956), + [anon_sym_PIPE] = ACTIONS(6953), + [anon_sym_CARET] = ACTIONS(6953), + [anon_sym_EQ_EQ] = ACTIONS(6959), + [anon_sym_BANG_EQ] = ACTIONS(6959), + [anon_sym_LT] = ACTIONS(6962), + [anon_sym_GT] = ACTIONS(6962), + [anon_sym_LT_EQ] = ACTIONS(6965), + [anon_sym_GT_EQ] = ACTIONS(6965), + [anon_sym_LT_LT] = ACTIONS(6968), + [anon_sym_GT_GT] = ACTIONS(6968), + [anon_sym_PLUS] = ACTIONS(6941), + [anon_sym_DASH] = ACTIONS(6941), + [anon_sym_SLASH] = ACTIONS(6941), + [anon_sym_PERCENT] = ACTIONS(6941), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), [sym_comment] = ACTIONS(121), }, [1307] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_EQ] = ACTIONS(6342), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_STAR_EQ] = ACTIONS(6348), - [anon_sym_SLASH_EQ] = ACTIONS(6348), - [anon_sym_PERCENT_EQ] = ACTIONS(6348), - [anon_sym_PLUS_EQ] = ACTIONS(6348), - [anon_sym_DASH_EQ] = ACTIONS(6348), - [anon_sym_LT_LT_EQ] = ACTIONS(6348), - [anon_sym_GT_GT_EQ] = ACTIONS(6348), - [anon_sym_AMP_EQ] = ACTIONS(6348), - [anon_sym_CARET_EQ] = ACTIONS(6348), - [anon_sym_PIPE_EQ] = ACTIONS(6348), - [anon_sym_AMP] = ACTIONS(6351), - [anon_sym_PIPE_PIPE] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6354), - [anon_sym_PIPE] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_EQ_EQ] = ACTIONS(6357), - [anon_sym_BANG_EQ] = ACTIONS(6357), - [anon_sym_LT] = ACTIONS(6360), - [anon_sym_GT] = ACTIONS(6360), - [anon_sym_LT_EQ] = ACTIONS(6363), - [anon_sym_GT_EQ] = ACTIONS(6363), - [anon_sym_LT_LT] = ACTIONS(6366), - [anon_sym_GT_GT] = ACTIONS(6366), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_PERCENT] = ACTIONS(6339), - [anon_sym_DASH_DASH] = ACTIONS(5123), - [anon_sym_PLUS_PLUS] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5126), - [anon_sym_DASH_GT] = ACTIONS(5126), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_EQ] = ACTIONS(6974), + [anon_sym_QMARK] = ACTIONS(6977), + [anon_sym_STAR_EQ] = ACTIONS(6980), + [anon_sym_SLASH_EQ] = ACTIONS(6980), + [anon_sym_PERCENT_EQ] = ACTIONS(6980), + [anon_sym_PLUS_EQ] = ACTIONS(6980), + [anon_sym_DASH_EQ] = ACTIONS(6980), + [anon_sym_LT_LT_EQ] = ACTIONS(6980), + [anon_sym_GT_GT_EQ] = ACTIONS(6980), + [anon_sym_AMP_EQ] = ACTIONS(6980), + [anon_sym_CARET_EQ] = ACTIONS(6980), + [anon_sym_PIPE_EQ] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(6983), + [anon_sym_PIPE_PIPE] = ACTIONS(6986), + [anon_sym_AMP_AMP] = ACTIONS(6986), + [anon_sym_PIPE] = ACTIONS(6983), + [anon_sym_CARET] = ACTIONS(6983), + [anon_sym_EQ_EQ] = ACTIONS(6989), + [anon_sym_BANG_EQ] = ACTIONS(6989), + [anon_sym_LT] = ACTIONS(6992), + [anon_sym_GT] = ACTIONS(6992), + [anon_sym_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_LT] = ACTIONS(6998), + [anon_sym_GT_GT] = ACTIONS(6998), + [anon_sym_PLUS] = ACTIONS(6971), + [anon_sym_DASH] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(6971), + [anon_sym_PERCENT] = ACTIONS(6971), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5015), [sym_comment] = ACTIONS(121), }, [1308] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(6372), - [anon_sym_QMARK] = ACTIONS(6375), - [anon_sym_STAR_EQ] = ACTIONS(6378), - [anon_sym_SLASH_EQ] = ACTIONS(6378), - [anon_sym_PERCENT_EQ] = ACTIONS(6378), - [anon_sym_PLUS_EQ] = ACTIONS(6378), - [anon_sym_DASH_EQ] = ACTIONS(6378), - [anon_sym_LT_LT_EQ] = ACTIONS(6378), - [anon_sym_GT_GT_EQ] = ACTIONS(6378), - [anon_sym_AMP_EQ] = ACTIONS(6378), - [anon_sym_CARET_EQ] = ACTIONS(6378), - [anon_sym_PIPE_EQ] = ACTIONS(6378), - [anon_sym_AMP] = ACTIONS(6381), - [anon_sym_PIPE_PIPE] = ACTIONS(6384), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_CARET] = ACTIONS(6381), - [anon_sym_EQ_EQ] = ACTIONS(6387), - [anon_sym_BANG_EQ] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6393), - [anon_sym_GT_EQ] = ACTIONS(6393), - [anon_sym_LT_LT] = ACTIONS(6396), - [anon_sym_GT_GT] = ACTIONS(6396), - [anon_sym_PLUS] = ACTIONS(6369), - [anon_sym_DASH] = ACTIONS(6369), - [anon_sym_SLASH] = ACTIONS(6369), - [anon_sym_PERCENT] = ACTIONS(6369), - [anon_sym_DASH_DASH] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6025), - [anon_sym_DOT] = ACTIONS(6028), - [anon_sym_DASH_GT] = ACTIONS(6028), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(7004), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7010), + [anon_sym_SLASH_EQ] = ACTIONS(7010), + [anon_sym_PERCENT_EQ] = ACTIONS(7010), + [anon_sym_PLUS_EQ] = ACTIONS(7010), + [anon_sym_DASH_EQ] = ACTIONS(7010), + [anon_sym_LT_LT_EQ] = ACTIONS(7010), + [anon_sym_GT_GT_EQ] = ACTIONS(7010), + [anon_sym_AMP_EQ] = ACTIONS(7010), + [anon_sym_CARET_EQ] = ACTIONS(7010), + [anon_sym_PIPE_EQ] = ACTIONS(7010), + [anon_sym_AMP] = ACTIONS(7013), + [anon_sym_PIPE_PIPE] = ACTIONS(7016), + [anon_sym_AMP_AMP] = ACTIONS(7016), + [anon_sym_PIPE] = ACTIONS(7013), + [anon_sym_CARET] = ACTIONS(7013), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_LT] = ACTIONS(7022), + [anon_sym_GT] = ACTIONS(7022), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7028), + [anon_sym_GT_GT] = ACTIONS(7028), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), [sym_comment] = ACTIONS(121), }, [1309] = { - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(1394), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(688), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(7031), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(7034), + [anon_sym_QMARK] = ACTIONS(7037), + [anon_sym_STAR_EQ] = ACTIONS(7040), + [anon_sym_SLASH_EQ] = ACTIONS(7040), + [anon_sym_PERCENT_EQ] = ACTIONS(7040), + [anon_sym_PLUS_EQ] = ACTIONS(7040), + [anon_sym_DASH_EQ] = ACTIONS(7040), + [anon_sym_LT_LT_EQ] = ACTIONS(7040), + [anon_sym_GT_GT_EQ] = ACTIONS(7040), + [anon_sym_AMP_EQ] = ACTIONS(7040), + [anon_sym_CARET_EQ] = ACTIONS(7040), + [anon_sym_PIPE_EQ] = ACTIONS(7040), + [anon_sym_AMP] = ACTIONS(7043), + [anon_sym_PIPE_PIPE] = ACTIONS(7046), + [anon_sym_AMP_AMP] = ACTIONS(7046), + [anon_sym_PIPE] = ACTIONS(7043), + [anon_sym_CARET] = ACTIONS(7043), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(7052), + [anon_sym_GT] = ACTIONS(7052), + [anon_sym_LT_EQ] = ACTIONS(7055), + [anon_sym_GT_EQ] = ACTIONS(7055), + [anon_sym_LT_LT] = ACTIONS(7058), + [anon_sym_GT_GT] = ACTIONS(7058), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(7031), + [anon_sym_DASH_DASH] = ACTIONS(5237), + [anon_sym_PLUS_PLUS] = ACTIONS(5237), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_DASH_GT] = ACTIONS(5240), [sym_comment] = ACTIONS(121), }, [1310] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_LBRACK] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(6402), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_STAR_EQ] = ACTIONS(6408), - [anon_sym_SLASH_EQ] = ACTIONS(6408), - [anon_sym_PERCENT_EQ] = ACTIONS(6408), - [anon_sym_PLUS_EQ] = ACTIONS(6408), - [anon_sym_DASH_EQ] = ACTIONS(6408), - [anon_sym_LT_LT_EQ] = ACTIONS(6408), - [anon_sym_GT_GT_EQ] = ACTIONS(6408), - [anon_sym_AMP_EQ] = ACTIONS(6408), - [anon_sym_CARET_EQ] = ACTIONS(6408), - [anon_sym_PIPE_EQ] = ACTIONS(6408), - [anon_sym_AMP] = ACTIONS(6411), - [anon_sym_PIPE_PIPE] = ACTIONS(6414), - [anon_sym_AMP_AMP] = ACTIONS(6414), - [anon_sym_PIPE] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_EQ_EQ] = ACTIONS(6417), - [anon_sym_BANG_EQ] = ACTIONS(6417), - [anon_sym_LT] = ACTIONS(6420), - [anon_sym_GT] = ACTIONS(6420), - [anon_sym_LT_EQ] = ACTIONS(6423), - [anon_sym_GT_EQ] = ACTIONS(6423), - [anon_sym_LT_LT] = ACTIONS(6426), - [anon_sym_GT_GT] = ACTIONS(6426), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_PERCENT] = ACTIONS(6399), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5461), - [anon_sym_DASH_GT] = ACTIONS(5461), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_LBRACK] = ACTIONS(5249), + [anon_sym_EQ] = ACTIONS(7064), + [anon_sym_QMARK] = ACTIONS(7067), + [anon_sym_STAR_EQ] = ACTIONS(7070), + [anon_sym_SLASH_EQ] = ACTIONS(7070), + [anon_sym_PERCENT_EQ] = ACTIONS(7070), + [anon_sym_PLUS_EQ] = ACTIONS(7070), + [anon_sym_DASH_EQ] = ACTIONS(7070), + [anon_sym_LT_LT_EQ] = ACTIONS(7070), + [anon_sym_GT_GT_EQ] = ACTIONS(7070), + [anon_sym_AMP_EQ] = ACTIONS(7070), + [anon_sym_CARET_EQ] = ACTIONS(7070), + [anon_sym_PIPE_EQ] = ACTIONS(7070), + [anon_sym_AMP] = ACTIONS(7073), + [anon_sym_PIPE_PIPE] = ACTIONS(7076), + [anon_sym_AMP_AMP] = ACTIONS(7076), + [anon_sym_PIPE] = ACTIONS(7073), + [anon_sym_CARET] = ACTIONS(7073), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_LT] = ACTIONS(7082), + [anon_sym_GT] = ACTIONS(7082), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7088), + [anon_sym_GT_GT] = ACTIONS(7088), + [anon_sym_PLUS] = ACTIONS(7061), + [anon_sym_DASH] = ACTIONS(7061), + [anon_sym_SLASH] = ACTIONS(7061), + [anon_sym_PERCENT] = ACTIONS(7061), + [anon_sym_DASH_DASH] = ACTIONS(5282), + [anon_sym_PLUS_PLUS] = ACTIONS(5282), + [anon_sym_DOT] = ACTIONS(5285), + [anon_sym_DASH_GT] = ACTIONS(5285), [sym_comment] = ACTIONS(121), }, [1311] = { - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(4588), - [anon_sym_STAR] = ACTIONS(6429), - [sym_identifier] = ACTIONS(6431), + [sym__expression] = STATE(1274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1312] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(4588), - [anon_sym_STAR] = ACTIONS(4590), - [sym_identifier] = ACTIONS(4592), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(7091), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1313] = { - [anon_sym_LPAREN] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1428), + [sym__pound_include] = ACTIONS(6258), + [sym__pound_define] = ACTIONS(6258), + [sym__pound_if] = ACTIONS(6258), + [sym__pound_ifdef] = ACTIONS(6258), + [sym__pound_endif] = ACTIONS(6258), + [sym__pound_else] = ACTIONS(6258), + [sym_preproc_directive] = ACTIONS(6261), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(6258), + [anon_sym_static] = ACTIONS(6258), + [anon_sym_auto] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [sym_function_specifier] = ACTIONS(6258), + [anon_sym_unsigned] = ACTIONS(6258), + [anon_sym_long] = ACTIONS(6258), + [anon_sym_short] = ACTIONS(6258), + [anon_sym_enum] = ACTIONS(6258), + [anon_sym_struct] = ACTIONS(6258), + [anon_sym_union] = ACTIONS(6258), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [sym_string_literal] = ACTIONS(1428), + [sym_identifier] = ACTIONS(6261), [sym_comment] = ACTIONS(121), }, [1314] = { - [sym__expression] = STATE(1397), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(1466), + [sym__pound_include] = ACTIONS(5496), + [sym__pound_define] = ACTIONS(5496), + [sym__pound_if] = ACTIONS(5496), + [sym__pound_ifdef] = ACTIONS(5496), + [sym__pound_endif] = ACTIONS(5496), + [sym__pound_else] = ACTIONS(5496), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(5496), + [anon_sym_static] = ACTIONS(5496), + [anon_sym_auto] = ACTIONS(5496), + [anon_sym_register] = ACTIONS(5496), + [anon_sym_const] = ACTIONS(5496), + [anon_sym_restrict] = ACTIONS(5496), + [anon_sym_volatile] = ACTIONS(5496), + [sym_function_specifier] = ACTIONS(5496), + [anon_sym_unsigned] = ACTIONS(5496), + [anon_sym_long] = ACTIONS(5496), + [anon_sym_short] = ACTIONS(5496), + [anon_sym_enum] = ACTIONS(5496), + [anon_sym_struct] = ACTIONS(5496), + [anon_sym_union] = ACTIONS(5496), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [sym_string_literal] = ACTIONS(1466), + [sym_identifier] = ACTIONS(5499), [sym_comment] = ACTIONS(121), }, [1315] = { - [sym__expression] = STATE(1398), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(7093), + [sym__pound_include] = ACTIONS(7096), + [sym__pound_define] = ACTIONS(7096), + [sym__pound_if] = ACTIONS(7096), + [sym__pound_ifdef] = ACTIONS(7096), + [sym__pound_endif] = ACTIONS(7096), + [sym__pound_else] = ACTIONS(7096), + [sym_preproc_directive] = ACTIONS(7099), + [anon_sym_SEMI] = ACTIONS(7093), + [anon_sym_extern] = ACTIONS(7096), + [anon_sym_LBRACE] = ACTIONS(7093), + [anon_sym_RBRACE] = ACTIONS(7093), + [anon_sym_STAR] = ACTIONS(7093), + [anon_sym_typedef] = ACTIONS(7096), + [anon_sym_static] = ACTIONS(7096), + [anon_sym_auto] = ACTIONS(7096), + [anon_sym_register] = ACTIONS(7096), + [anon_sym_const] = ACTIONS(7096), + [anon_sym_restrict] = ACTIONS(7096), + [anon_sym_volatile] = ACTIONS(7096), + [sym_function_specifier] = ACTIONS(7096), + [anon_sym_unsigned] = ACTIONS(7096), + [anon_sym_long] = ACTIONS(7096), + [anon_sym_short] = ACTIONS(7096), + [anon_sym_enum] = ACTIONS(7096), + [anon_sym_struct] = ACTIONS(7096), + [anon_sym_union] = ACTIONS(7096), + [anon_sym_if] = ACTIONS(7096), + [anon_sym_else] = ACTIONS(7096), + [anon_sym_switch] = ACTIONS(7096), + [anon_sym_case] = ACTIONS(7096), + [anon_sym_default] = ACTIONS(7096), + [anon_sym_while] = ACTIONS(7096), + [anon_sym_do] = ACTIONS(7096), + [anon_sym_for] = ACTIONS(7096), + [anon_sym_return] = ACTIONS(7096), + [anon_sym_break] = ACTIONS(7096), + [anon_sym_continue] = ACTIONS(7096), + [anon_sym_goto] = ACTIONS(7096), + [anon_sym_AMP] = ACTIONS(7093), + [anon_sym_BANG] = ACTIONS(7093), + [anon_sym_TILDE] = ACTIONS(7093), + [anon_sym_PLUS] = ACTIONS(7096), + [anon_sym_DASH] = ACTIONS(7096), + [anon_sym_DASH_DASH] = ACTIONS(7093), + [anon_sym_PLUS_PLUS] = ACTIONS(7093), + [anon_sym_sizeof] = ACTIONS(7096), + [sym_number_literal] = ACTIONS(7096), + [sym_char_literal] = ACTIONS(7096), + [sym_string_literal] = ACTIONS(7093), + [sym_identifier] = ACTIONS(7099), [sym_comment] = ACTIONS(121), }, [1316] = { - [sym__expression] = STATE(1399), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(305), - [anon_sym_PLUS_PLUS] = ACTIONS(305), - [anon_sym_sizeof] = ACTIONS(307), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(6551), [sym_comment] = ACTIONS(121), }, [1317] = { - [sym__expression] = STATE(1400), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(7102), + [sym__pound_include] = ACTIONS(7106), + [sym__pound_define] = ACTIONS(7106), + [sym__pound_if] = ACTIONS(7106), + [sym__pound_ifdef] = ACTIONS(7106), + [sym__pound_endif] = ACTIONS(7106), + [sym__pound_else] = ACTIONS(7106), + [sym_preproc_directive] = ACTIONS(7110), + [anon_sym_SEMI] = ACTIONS(7102), + [anon_sym_extern] = ACTIONS(7106), + [anon_sym_LBRACE] = ACTIONS(7102), + [anon_sym_RBRACE] = ACTIONS(7102), + [anon_sym_STAR] = ACTIONS(7102), + [anon_sym_typedef] = ACTIONS(7106), + [anon_sym_static] = ACTIONS(7106), + [anon_sym_auto] = ACTIONS(7106), + [anon_sym_register] = ACTIONS(7106), + [anon_sym_const] = ACTIONS(7106), + [anon_sym_restrict] = ACTIONS(7106), + [anon_sym_volatile] = ACTIONS(7106), + [sym_function_specifier] = ACTIONS(7106), + [anon_sym_unsigned] = ACTIONS(7106), + [anon_sym_long] = ACTIONS(7106), + [anon_sym_short] = ACTIONS(7106), + [anon_sym_enum] = ACTIONS(7106), + [anon_sym_struct] = ACTIONS(7106), + [anon_sym_union] = ACTIONS(7106), + [anon_sym_if] = ACTIONS(7106), + [anon_sym_else] = ACTIONS(7106), + [anon_sym_switch] = ACTIONS(7106), + [anon_sym_case] = ACTIONS(7106), + [anon_sym_default] = ACTIONS(7106), + [anon_sym_while] = ACTIONS(7106), + [anon_sym_do] = ACTIONS(7106), + [anon_sym_for] = ACTIONS(7106), + [anon_sym_return] = ACTIONS(7106), + [anon_sym_break] = ACTIONS(7106), + [anon_sym_continue] = ACTIONS(7106), + [anon_sym_goto] = ACTIONS(7106), + [anon_sym_AMP] = ACTIONS(7102), + [anon_sym_BANG] = ACTIONS(7102), + [anon_sym_TILDE] = ACTIONS(7102), + [anon_sym_PLUS] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7106), + [anon_sym_DASH_DASH] = ACTIONS(7102), + [anon_sym_PLUS_PLUS] = ACTIONS(7102), + [anon_sym_sizeof] = ACTIONS(7106), + [sym_number_literal] = ACTIONS(7106), + [sym_char_literal] = ACTIONS(7106), + [sym_string_literal] = ACTIONS(7102), + [sym_identifier] = ACTIONS(7110), [sym_comment] = ACTIONS(121), }, [1318] = { - [sym__expression] = STATE(1401), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1345), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(6551), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1319] = { - [sym__expression] = STATE(1402), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(1284), + [sym_labeled_statement] = STATE(1284), + [sym_expression_statement] = STATE(1284), + [sym_if_statement] = STATE(1284), + [sym_switch_statement] = STATE(1284), + [sym_case_statement] = STATE(1284), + [sym_while_statement] = STATE(1284), + [sym_do_statement] = STATE(1284), + [sym_for_statement] = STATE(1284), + [sym_return_statement] = STATE(1284), + [sym_break_statement] = STATE(1284), + [sym_continue_statement] = STATE(1284), + [sym_goto_statement] = STATE(1284), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1320] = { - [sym__expression] = STATE(1403), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1361), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1321] = { - [sym__expression] = STATE(1404), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(7114), [sym_comment] = ACTIONS(121), }, [1322] = { - [anon_sym_LPAREN] = ACTIONS(6433), - [anon_sym_COMMA] = ACTIONS(6433), - [anon_sym_RPAREN] = ACTIONS(6433), - [anon_sym_SEMI] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(6450), - [anon_sym_COLON] = ACTIONS(6454), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_STAR_EQ] = ACTIONS(1572), - [anon_sym_SLASH_EQ] = ACTIONS(1572), - [anon_sym_PERCENT_EQ] = ACTIONS(1572), - [anon_sym_PLUS_EQ] = ACTIONS(1572), - [anon_sym_DASH_EQ] = ACTIONS(1572), - [anon_sym_LT_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_GT_EQ] = ACTIONS(1572), - [anon_sym_AMP_EQ] = ACTIONS(1572), - [anon_sym_CARET_EQ] = ACTIONS(1572), - [anon_sym_PIPE_EQ] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1574), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_GT] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1574), - [anon_sym_GT_GT] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1574), - [anon_sym_PERCENT] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_DASH_GT] = ACTIONS(1572), + [sym__declarator] = STATE(84), + [sym__field_declarator] = STATE(205), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(6437), + [sym_identifier] = ACTIONS(6439), [sym_comment] = ACTIONS(121), }, [1323] = { - [ts_builtin_sym_end] = ACTIONS(874), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(6457), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(876), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(876), - [sym_preproc_directive] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(6457), - [anon_sym_extern] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6457), - [anon_sym_typedef] = ACTIONS(6463), - [anon_sym_static] = ACTIONS(6463), - [anon_sym_auto] = ACTIONS(6463), - [anon_sym_register] = ACTIONS(6463), - [anon_sym_const] = ACTIONS(6463), - [anon_sym_restrict] = ACTIONS(6463), - [anon_sym_volatile] = ACTIONS(6463), - [sym_function_specifier] = ACTIONS(6463), - [anon_sym_unsigned] = ACTIONS(6463), - [anon_sym_long] = ACTIONS(6463), - [anon_sym_short] = ACTIONS(6463), - [anon_sym_enum] = ACTIONS(6463), - [anon_sym_struct] = ACTIONS(6463), - [anon_sym_union] = ACTIONS(6463), - [anon_sym_COLON] = ACTIONS(5707), - [anon_sym_if] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_switch] = ACTIONS(876), - [anon_sym_case] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_goto] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_sizeof] = ACTIONS(876), - [sym_number_literal] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [sym_string_literal] = ACTIONS(874), - [sym_identifier] = ACTIONS(6469), + [anon_sym_LPAREN] = ACTIONS(5581), + [anon_sym_RPAREN] = ACTIONS(5581), + [anon_sym_LBRACK] = ACTIONS(5581), [sym_comment] = ACTIONS(121), }, [1324] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(6558), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(7116), + [anon_sym_LBRACK] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7125), + [anon_sym_SLASH_EQ] = ACTIONS(7125), + [anon_sym_PERCENT_EQ] = ACTIONS(7125), + [anon_sym_PLUS_EQ] = ACTIONS(7125), + [anon_sym_DASH_EQ] = ACTIONS(7125), + [anon_sym_LT_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_EQ] = ACTIONS(7125), + [anon_sym_AMP_EQ] = ACTIONS(7125), + [anon_sym_CARET_EQ] = ACTIONS(7125), + [anon_sym_PIPE_EQ] = ACTIONS(7125), + [anon_sym_AMP] = ACTIONS(7128), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_CARET] = ACTIONS(7128), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_GT] = ACTIONS(7137), + [anon_sym_LT_EQ] = ACTIONS(7140), + [anon_sym_GT_EQ] = ACTIONS(7140), + [anon_sym_LT_LT] = ACTIONS(7143), + [anon_sym_GT_GT] = ACTIONS(7143), + [anon_sym_PLUS] = ACTIONS(7116), + [anon_sym_DASH] = ACTIONS(7116), + [anon_sym_SLASH] = ACTIONS(7116), + [anon_sym_PERCENT] = ACTIONS(7116), + [anon_sym_DASH_DASH] = ACTIONS(6597), + [anon_sym_PLUS_PLUS] = ACTIONS(6597), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [sym_comment] = ACTIONS(121), }, [1325] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(6477), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7152), + [anon_sym_STAR_EQ] = ACTIONS(7155), + [anon_sym_SLASH_EQ] = ACTIONS(7155), + [anon_sym_PERCENT_EQ] = ACTIONS(7155), + [anon_sym_PLUS_EQ] = ACTIONS(7155), + [anon_sym_DASH_EQ] = ACTIONS(7155), + [anon_sym_LT_LT_EQ] = ACTIONS(7155), + [anon_sym_GT_GT_EQ] = ACTIONS(7155), + [anon_sym_AMP_EQ] = ACTIONS(7155), + [anon_sym_CARET_EQ] = ACTIONS(7155), + [anon_sym_PIPE_EQ] = ACTIONS(7155), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7161), + [anon_sym_AMP_AMP] = ACTIONS(7161), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7164), + [anon_sym_BANG_EQ] = ACTIONS(7164), + [anon_sym_LT] = ACTIONS(7167), + [anon_sym_GT] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7170), + [anon_sym_GT_EQ] = ACTIONS(7170), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7146), + [anon_sym_PERCENT] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(4773), + [anon_sym_PLUS_PLUS] = ACTIONS(4773), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_DASH_GT] = ACTIONS(4776), [sym_comment] = ACTIONS(121), }, [1326] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4835), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(7176), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1327] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(4831), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(7178), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(7181), + [anon_sym_QMARK] = ACTIONS(7184), + [anon_sym_STAR_EQ] = ACTIONS(7187), + [anon_sym_SLASH_EQ] = ACTIONS(7187), + [anon_sym_PERCENT_EQ] = ACTIONS(7187), + [anon_sym_PLUS_EQ] = ACTIONS(7187), + [anon_sym_DASH_EQ] = ACTIONS(7187), + [anon_sym_LT_LT_EQ] = ACTIONS(7187), + [anon_sym_GT_GT_EQ] = ACTIONS(7187), + [anon_sym_AMP_EQ] = ACTIONS(7187), + [anon_sym_CARET_EQ] = ACTIONS(7187), + [anon_sym_PIPE_EQ] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7190), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7190), + [anon_sym_CARET] = ACTIONS(7190), + [anon_sym_EQ_EQ] = ACTIONS(7196), + [anon_sym_BANG_EQ] = ACTIONS(7196), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_LT_EQ] = ACTIONS(7202), + [anon_sym_GT_EQ] = ACTIONS(7202), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7178), + [anon_sym_SLASH] = ACTIONS(7178), + [anon_sym_PERCENT] = ACTIONS(7178), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5105), [sym_comment] = ACTIONS(121), }, [1328] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(7208), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_QMARK] = ACTIONS(7214), + [anon_sym_STAR_EQ] = ACTIONS(7217), + [anon_sym_SLASH_EQ] = ACTIONS(7217), + [anon_sym_PERCENT_EQ] = ACTIONS(7217), + [anon_sym_PLUS_EQ] = ACTIONS(7217), + [anon_sym_DASH_EQ] = ACTIONS(7217), + [anon_sym_LT_LT_EQ] = ACTIONS(7217), + [anon_sym_GT_GT_EQ] = ACTIONS(7217), + [anon_sym_AMP_EQ] = ACTIONS(7217), + [anon_sym_CARET_EQ] = ACTIONS(7217), + [anon_sym_PIPE_EQ] = ACTIONS(7217), + [anon_sym_AMP] = ACTIONS(7220), + [anon_sym_PIPE_PIPE] = ACTIONS(7223), + [anon_sym_AMP_AMP] = ACTIONS(7223), + [anon_sym_PIPE] = ACTIONS(7220), + [anon_sym_CARET] = ACTIONS(7220), + [anon_sym_EQ_EQ] = ACTIONS(7226), + [anon_sym_BANG_EQ] = ACTIONS(7226), + [anon_sym_LT] = ACTIONS(7229), + [anon_sym_GT] = ACTIONS(7229), + [anon_sym_LT_EQ] = ACTIONS(7232), + [anon_sym_GT_EQ] = ACTIONS(7232), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7208), + [anon_sym_DASH] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7208), + [anon_sym_PERCENT] = ACTIONS(7208), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5015), [sym_comment] = ACTIONS(121), }, [1329] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(7238), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(7241), + [anon_sym_QMARK] = ACTIONS(7244), + [anon_sym_STAR_EQ] = ACTIONS(7247), + [anon_sym_SLASH_EQ] = ACTIONS(7247), + [anon_sym_PERCENT_EQ] = ACTIONS(7247), + [anon_sym_PLUS_EQ] = ACTIONS(7247), + [anon_sym_DASH_EQ] = ACTIONS(7247), + [anon_sym_LT_LT_EQ] = ACTIONS(7247), + [anon_sym_GT_GT_EQ] = ACTIONS(7247), + [anon_sym_AMP_EQ] = ACTIONS(7247), + [anon_sym_CARET_EQ] = ACTIONS(7247), + [anon_sym_PIPE_EQ] = ACTIONS(7247), + [anon_sym_AMP] = ACTIONS(7250), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_AMP_AMP] = ACTIONS(7253), + [anon_sym_PIPE] = ACTIONS(7250), + [anon_sym_CARET] = ACTIONS(7250), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_LT_EQ] = ACTIONS(7262), + [anon_sym_GT_EQ] = ACTIONS(7262), + [anon_sym_LT_LT] = ACTIONS(7265), + [anon_sym_GT_GT] = ACTIONS(7265), + [anon_sym_PLUS] = ACTIONS(7238), + [anon_sym_DASH] = ACTIONS(7238), + [anon_sym_SLASH] = ACTIONS(7238), + [anon_sym_PERCENT] = ACTIONS(7238), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5195), + [anon_sym_DASH_GT] = ACTIONS(5195), [sym_comment] = ACTIONS(121), }, [1330] = { - [sym__expression] = STATE(1408), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(7268), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(7271), + [anon_sym_QMARK] = ACTIONS(7274), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_AMP] = ACTIONS(7280), + [anon_sym_PIPE_PIPE] = ACTIONS(7283), + [anon_sym_AMP_AMP] = ACTIONS(7283), + [anon_sym_PIPE] = ACTIONS(7280), + [anon_sym_CARET] = ACTIONS(7280), + [anon_sym_EQ_EQ] = ACTIONS(7286), + [anon_sym_BANG_EQ] = ACTIONS(7286), + [anon_sym_LT] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_LT] = ACTIONS(7295), + [anon_sym_GT_GT] = ACTIONS(7295), + [anon_sym_PLUS] = ACTIONS(7268), + [anon_sym_DASH] = ACTIONS(7268), + [anon_sym_SLASH] = ACTIONS(7268), + [anon_sym_PERCENT] = ACTIONS(7268), + [anon_sym_DASH_DASH] = ACTIONS(5237), + [anon_sym_PLUS_PLUS] = ACTIONS(5237), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_DASH_GT] = ACTIONS(5240), [sym_comment] = ACTIONS(121), }, [1331] = { - [anon_sym_RPAREN] = ACTIONS(6481), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(7298), + [anon_sym_LBRACK] = ACTIONS(5249), + [anon_sym_EQ] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7304), + [anon_sym_STAR_EQ] = ACTIONS(7307), + [anon_sym_SLASH_EQ] = ACTIONS(7307), + [anon_sym_PERCENT_EQ] = ACTIONS(7307), + [anon_sym_PLUS_EQ] = ACTIONS(7307), + [anon_sym_DASH_EQ] = ACTIONS(7307), + [anon_sym_LT_LT_EQ] = ACTIONS(7307), + [anon_sym_GT_GT_EQ] = ACTIONS(7307), + [anon_sym_AMP_EQ] = ACTIONS(7307), + [anon_sym_CARET_EQ] = ACTIONS(7307), + [anon_sym_PIPE_EQ] = ACTIONS(7307), + [anon_sym_AMP] = ACTIONS(7310), + [anon_sym_PIPE_PIPE] = ACTIONS(7313), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE] = ACTIONS(7310), + [anon_sym_CARET] = ACTIONS(7310), + [anon_sym_EQ_EQ] = ACTIONS(7316), + [anon_sym_BANG_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7319), + [anon_sym_GT] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7325), + [anon_sym_GT_GT] = ACTIONS(7325), + [anon_sym_PLUS] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7298), + [anon_sym_SLASH] = ACTIONS(7298), + [anon_sym_PERCENT] = ACTIONS(7298), + [anon_sym_DASH_DASH] = ACTIONS(5282), + [anon_sym_PLUS_PLUS] = ACTIONS(5282), + [anon_sym_DOT] = ACTIONS(5285), + [anon_sym_DASH_GT] = ACTIONS(5285), [sym_comment] = ACTIONS(121), }, [1332] = { - [aux_sym_preproc_params_repeat1] = STATE(527), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6486), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [sym_compound_statement] = STATE(1364), + [sym_labeled_statement] = STATE(1364), + [sym_expression_statement] = STATE(1364), + [sym_if_statement] = STATE(1364), + [sym_switch_statement] = STATE(1364), + [sym_case_statement] = STATE(1364), + [sym_while_statement] = STATE(1364), + [sym_do_statement] = STATE(1364), + [sym_for_statement] = STATE(1364), + [sym_return_statement] = STATE(1364), + [sym_break_statement] = STATE(1364), + [sym_continue_statement] = STATE(1364), + [sym_goto_statement] = STATE(1364), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1333] = { - [anon_sym_RPAREN] = ACTIONS(6491), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1334] = { - [sym__declarator] = STATE(62), - [sym__field_declarator] = STATE(417), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym_type_qualifier] = STATE(63), - [sym__type_specifier] = STATE(64), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(65), - [sym_comma_expression] = STATE(66), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_type_descriptor] = STATE(67), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym_sized_type_specifier_repeat1] = STATE(68), - [aux_sym_type_descriptor_repeat1] = STATE(69), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_STAR] = ACTIONS(4305), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4307), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(7328), + [sym__pound_include] = ACTIONS(1966), + [sym__pound_define] = ACTIONS(1966), + [sym__pound_if] = ACTIONS(1966), + [sym__pound_ifdef] = ACTIONS(1966), + [sym__pound_endif] = ACTIONS(1966), + [sym__pound_else] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(7331), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(5608), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(7334), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_auto] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [sym_function_specifier] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(5626), + [anon_sym_case] = ACTIONS(5629), + [anon_sym_default] = ACTIONS(5632), + [anon_sym_while] = ACTIONS(5635), + [anon_sym_do] = ACTIONS(5638), + [anon_sym_for] = ACTIONS(5641), + [anon_sym_return] = ACTIONS(5644), + [anon_sym_break] = ACTIONS(5647), + [anon_sym_continue] = ACTIONS(5650), + [anon_sym_goto] = ACTIONS(5653), + [anon_sym_AMP] = ACTIONS(7334), + [anon_sym_BANG] = ACTIONS(7337), + [anon_sym_TILDE] = ACTIONS(5659), + [anon_sym_PLUS] = ACTIONS(7340), + [anon_sym_DASH] = ACTIONS(7340), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_sizeof] = ACTIONS(5672), + [sym_number_literal] = ACTIONS(5675), + [sym_char_literal] = ACTIONS(5675), + [sym_string_literal] = ACTIONS(5678), + [sym_identifier] = ACTIONS(5681), [sym_comment] = ACTIONS(121), }, [1335] = { - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(6493), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(596), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(596), - [sym_preproc_directive] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(6493), - [anon_sym_extern] = ACTIONS(6500), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6497), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_typedef] = ACTIONS(6500), - [anon_sym_static] = ACTIONS(6500), - [anon_sym_auto] = ACTIONS(6500), - [anon_sym_register] = ACTIONS(6500), - [anon_sym_const] = ACTIONS(6500), - [anon_sym_restrict] = ACTIONS(6500), - [anon_sym_volatile] = ACTIONS(6500), - [sym_function_specifier] = ACTIONS(6500), - [anon_sym_unsigned] = ACTIONS(596), - [anon_sym_long] = ACTIONS(596), - [anon_sym_short] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_if] = ACTIONS(596), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_case] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_do] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_goto] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_TILDE] = ACTIONS(6493), - [anon_sym_PLUS] = ACTIONS(6500), - [anon_sym_DASH] = ACTIONS(6500), - [anon_sym_DASH_DASH] = ACTIONS(6493), - [anon_sym_PLUS_PLUS] = ACTIONS(6493), - [anon_sym_sizeof] = ACTIONS(6500), - [sym_number_literal] = ACTIONS(6500), - [sym_char_literal] = ACTIONS(6500), - [sym_string_literal] = ACTIONS(6493), - [sym_identifier] = ACTIONS(6504), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_QMARK] = ACTIONS(4822), + [anon_sym_STAR_EQ] = ACTIONS(4825), + [anon_sym_SLASH_EQ] = ACTIONS(4825), + [anon_sym_PERCENT_EQ] = ACTIONS(4825), + [anon_sym_PLUS_EQ] = ACTIONS(4825), + [anon_sym_DASH_EQ] = ACTIONS(4825), + [anon_sym_LT_LT_EQ] = ACTIONS(4825), + [anon_sym_GT_GT_EQ] = ACTIONS(4825), + [anon_sym_AMP_EQ] = ACTIONS(4825), + [anon_sym_CARET_EQ] = ACTIONS(4825), + [anon_sym_PIPE_EQ] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4828), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_CARET] = ACTIONS(4828), + [anon_sym_EQ_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_LT_EQ] = ACTIONS(4840), + [anon_sym_GT_EQ] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4843), + [anon_sym_GT_GT] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4852), [sym_comment] = ACTIONS(121), }, [1336] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [sym__expression] = STATE(85), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5485), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4567), + [sym__expression] = STATE(1274), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(7346), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1750), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(7352), + [anon_sym_DASH] = ACTIONS(7352), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_sizeof] = ACTIONS(2893), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1337] = { - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(4573), - [anon_sym_SEMI] = ACTIONS(4577), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4581), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(4584), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), + [sym__expression] = STATE(548), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(7358), + [anon_sym_COMMA] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_extern] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_typedef] = ACTIONS(733), + [anon_sym_static] = ACTIONS(733), + [anon_sym_auto] = ACTIONS(733), + [anon_sym_register] = ACTIONS(733), + [anon_sym_const] = ACTIONS(733), + [anon_sym_restrict] = ACTIONS(733), + [anon_sym_volatile] = ACTIONS(733), + [sym_function_specifier] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(7361), + [anon_sym_BANG] = ACTIONS(7364), + [anon_sym_TILDE] = ACTIONS(7367), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7373), + [anon_sym_PLUS_PLUS] = ACTIONS(7373), + [anon_sym_sizeof] = ACTIONS(7376), + [sym_number_literal] = ACTIONS(5819), + [sym_char_literal] = ACTIONS(5819), + [sym_string_literal] = ACTIONS(5822), + [sym_identifier] = ACTIONS(5825), [sym_comment] = ACTIONS(121), }, [1338] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [sym__declarator] = STATE(84), + [sym__field_declarator] = STATE(205), + [sym_pointer_declarator] = STATE(44), + [sym_pointer_field_declarator] = STATE(117), + [sym_function_declarator] = STATE(44), + [sym_function_field_declarator] = STATE(118), + [sym_array_declarator] = STATE(44), + [sym_array_field_declarator] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(4612), + [anon_sym_STAR] = ACTIONS(6504), + [sym_identifier] = ACTIONS(4616), [sym_comment] = ACTIONS(121), }, [1339] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1412), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(6508), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1340] = { - [sym__expression] = STATE(1413), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(6508), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(7379), [sym_comment] = ACTIONS(121), }, [1341] = { - [anon_sym_LPAREN] = ACTIONS(6510), - [anon_sym_COMMA] = ACTIONS(6510), - [anon_sym_RPAREN] = ACTIONS(6510), - [anon_sym_SEMI] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(6510), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(2045), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1366), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1342] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(6518), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(7381), + [sym__pound_include] = ACTIONS(7384), + [sym__pound_define] = ACTIONS(7384), + [sym__pound_if] = ACTIONS(7384), + [sym__pound_ifdef] = ACTIONS(7384), + [sym__pound_endif] = ACTIONS(7384), + [sym__pound_else] = ACTIONS(7384), + [sym_preproc_directive] = ACTIONS(7387), + [anon_sym_SEMI] = ACTIONS(7381), + [anon_sym_extern] = ACTIONS(7384), + [anon_sym_LBRACE] = ACTIONS(7381), + [anon_sym_RBRACE] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_typedef] = ACTIONS(7384), + [anon_sym_static] = ACTIONS(7384), + [anon_sym_auto] = ACTIONS(7384), + [anon_sym_register] = ACTIONS(7384), + [anon_sym_const] = ACTIONS(7384), + [anon_sym_restrict] = ACTIONS(7384), + [anon_sym_volatile] = ACTIONS(7384), + [sym_function_specifier] = ACTIONS(7384), + [anon_sym_unsigned] = ACTIONS(7384), + [anon_sym_long] = ACTIONS(7384), + [anon_sym_short] = ACTIONS(7384), + [anon_sym_enum] = ACTIONS(7384), + [anon_sym_struct] = ACTIONS(7384), + [anon_sym_union] = ACTIONS(7384), + [anon_sym_if] = ACTIONS(7384), + [anon_sym_else] = ACTIONS(7384), + [anon_sym_switch] = ACTIONS(7384), + [anon_sym_case] = ACTIONS(7384), + [anon_sym_default] = ACTIONS(7384), + [anon_sym_while] = ACTIONS(7384), + [anon_sym_do] = ACTIONS(7384), + [anon_sym_for] = ACTIONS(7384), + [anon_sym_return] = ACTIONS(7384), + [anon_sym_break] = ACTIONS(7384), + [anon_sym_continue] = ACTIONS(7384), + [anon_sym_goto] = ACTIONS(7384), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_BANG] = ACTIONS(7381), + [anon_sym_TILDE] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7384), + [anon_sym_DASH] = ACTIONS(7384), + [anon_sym_DASH_DASH] = ACTIONS(7381), + [anon_sym_PLUS_PLUS] = ACTIONS(7381), + [anon_sym_sizeof] = ACTIONS(7384), + [sym_number_literal] = ACTIONS(7384), + [sym_char_literal] = ACTIONS(7384), + [sym_string_literal] = ACTIONS(7381), + [sym_identifier] = ACTIONS(7387), [sym_comment] = ACTIONS(121), }, [1343] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(6520), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4281), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_LT_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_GT_EQ] = ACTIONS(4283), - [anon_sym_AMP_EQ] = ACTIONS(4283), - [anon_sym_CARET_EQ] = ACTIONS(4283), - [anon_sym_PIPE_EQ] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_CARET] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4295), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4277), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(1367), + [sym_labeled_statement] = STATE(1367), + [sym_expression_statement] = STATE(1367), + [sym_if_statement] = STATE(1367), + [sym_switch_statement] = STATE(1367), + [sym_case_statement] = STATE(1367), + [sym_while_statement] = STATE(1367), + [sym_do_statement] = STATE(1367), + [sym_for_statement] = STATE(1367), + [sym_return_statement] = STATE(1367), + [sym_break_statement] = STATE(1367), + [sym_continue_statement] = STATE(1367), + [sym_goto_statement] = STATE(1367), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1344] = { - [ts_builtin_sym_end] = ACTIONS(6526), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(6533), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(6533), - [anon_sym_LPAREN] = ACTIONS(6526), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(6533), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(6533), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(6533), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(6533), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(6533), - [sym_preproc_directive] = ACTIONS(6540), - [anon_sym_SEMI] = ACTIONS(6526), - [anon_sym_extern] = ACTIONS(6533), - [anon_sym_LBRACE] = ACTIONS(6526), - [anon_sym_RBRACE] = ACTIONS(6526), - [anon_sym_STAR] = ACTIONS(6526), - [anon_sym_typedef] = ACTIONS(6533), - [anon_sym_static] = ACTIONS(6533), - [anon_sym_auto] = ACTIONS(6533), - [anon_sym_register] = ACTIONS(6533), - [anon_sym_const] = ACTIONS(6533), - [anon_sym_restrict] = ACTIONS(6533), - [anon_sym_volatile] = ACTIONS(6533), - [sym_function_specifier] = ACTIONS(6533), - [anon_sym_unsigned] = ACTIONS(6533), - [anon_sym_long] = ACTIONS(6533), - [anon_sym_short] = ACTIONS(6533), - [anon_sym_enum] = ACTIONS(6533), - [anon_sym_struct] = ACTIONS(6533), - [anon_sym_union] = ACTIONS(6533), - [anon_sym_if] = ACTIONS(6533), - [anon_sym_else] = ACTIONS(6547), - [anon_sym_switch] = ACTIONS(6533), - [anon_sym_case] = ACTIONS(6533), - [anon_sym_default] = ACTIONS(6533), - [anon_sym_while] = ACTIONS(6533), - [anon_sym_do] = ACTIONS(6533), - [anon_sym_for] = ACTIONS(6533), - [anon_sym_return] = ACTIONS(6533), - [anon_sym_break] = ACTIONS(6533), - [anon_sym_continue] = ACTIONS(6533), - [anon_sym_goto] = ACTIONS(6533), - [anon_sym_AMP] = ACTIONS(6526), - [anon_sym_BANG] = ACTIONS(6526), - [anon_sym_TILDE] = ACTIONS(6526), - [anon_sym_PLUS] = ACTIONS(6533), - [anon_sym_DASH] = ACTIONS(6533), - [anon_sym_DASH_DASH] = ACTIONS(6526), - [anon_sym_PLUS_PLUS] = ACTIONS(6526), - [anon_sym_sizeof] = ACTIONS(6533), - [sym_number_literal] = ACTIONS(6533), - [sym_char_literal] = ACTIONS(6533), - [sym_string_literal] = ACTIONS(6526), - [sym_identifier] = ACTIONS(6540), + [sym__expression] = STATE(1368), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1345] = { - [sym_compound_statement] = STATE(1415), - [sym_labeled_statement] = STATE(1415), - [sym_expression_statement] = STATE(1415), - [sym_if_statement] = STATE(1415), - [sym_switch_statement] = STATE(1415), - [sym_case_statement] = STATE(1415), - [sym_while_statement] = STATE(1415), - [sym_do_statement] = STATE(1415), - [sym_for_statement] = STATE(1415), - [sym_return_statement] = STATE(1415), - [sym_break_statement] = STATE(1415), - [sym_continue_statement] = STATE(1415), - [sym_goto_statement] = STATE(1415), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(7390), [sym_comment] = ACTIONS(121), }, [1346] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1418), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(6555), - [anon_sym_SEMI] = ACTIONS(6557), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4281), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_LT_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_GT_EQ] = ACTIONS(4283), - [anon_sym_AMP_EQ] = ACTIONS(4283), - [anon_sym_CARET_EQ] = ACTIONS(4283), - [anon_sym_PIPE_EQ] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_CARET] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4295), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4277), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(7392), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1347] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(6559), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_COLON] = ACTIONS(1829), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_STAR_EQ] = ACTIONS(4801), - [anon_sym_SLASH_EQ] = ACTIONS(4801), - [anon_sym_PERCENT_EQ] = ACTIONS(4801), - [anon_sym_PLUS_EQ] = ACTIONS(4801), - [anon_sym_DASH_EQ] = ACTIONS(4801), - [anon_sym_LT_LT_EQ] = ACTIONS(4801), - [anon_sym_GT_GT_EQ] = ACTIONS(4801), - [anon_sym_AMP_EQ] = ACTIONS(4801), - [anon_sym_CARET_EQ] = ACTIONS(4801), - [anon_sym_PIPE_EQ] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_CARET] = ACTIONS(4804), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4813), - [anon_sym_GT] = ACTIONS(4813), - [anon_sym_LT_EQ] = ACTIONS(4816), - [anon_sym_GT_EQ] = ACTIONS(4816), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4822), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_PERCENT] = ACTIONS(4789), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4828), - [anon_sym_DASH_GT] = ACTIONS(4828), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(7394), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1348] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(6562), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(6565), - [anon_sym_LBRACK] = ACTIONS(6568), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(6571), - [anon_sym_COLON] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(6574), - [anon_sym_STAR_EQ] = ACTIONS(6577), - [anon_sym_SLASH_EQ] = ACTIONS(6577), - [anon_sym_PERCENT_EQ] = ACTIONS(6577), - [anon_sym_PLUS_EQ] = ACTIONS(6577), - [anon_sym_DASH_EQ] = ACTIONS(6577), - [anon_sym_LT_LT_EQ] = ACTIONS(6577), - [anon_sym_GT_GT_EQ] = ACTIONS(6577), - [anon_sym_AMP_EQ] = ACTIONS(6577), - [anon_sym_CARET_EQ] = ACTIONS(6577), - [anon_sym_PIPE_EQ] = ACTIONS(6577), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_PIPE_PIPE] = ACTIONS(6583), - [anon_sym_AMP_AMP] = ACTIONS(6583), - [anon_sym_PIPE] = ACTIONS(6580), - [anon_sym_CARET] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(6586), - [anon_sym_BANG_EQ] = ACTIONS(6586), - [anon_sym_LT] = ACTIONS(6589), - [anon_sym_GT] = ACTIONS(6589), - [anon_sym_LT_EQ] = ACTIONS(6592), - [anon_sym_GT_EQ] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6595), - [anon_sym_GT_GT] = ACTIONS(6595), - [anon_sym_PLUS] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6598), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6565), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6604), - [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_declaration] = STATE(591), + [sym__declaration_specifiers] = STATE(442), + [sym_compound_statement] = STATE(591), + [sym_storage_class_specifier] = STATE(10), + [sym_type_qualifier] = STATE(10), + [sym__type_specifier] = STATE(19), + [sym_sized_type_specifier] = STATE(20), + [sym_enum_specifier] = STATE(20), + [sym_struct_specifier] = STATE(20), + [sym_union_specifier] = STATE(20), + [sym_labeled_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_case_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_goto_statement] = STATE(591), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [sym_macro_type_specifier] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(23), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_typedef] = ACTIONS(137), + [anon_sym_static] = ACTIONS(137), + [anon_sym_auto] = ACTIONS(137), + [anon_sym_register] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_restrict] = ACTIONS(139), + [anon_sym_volatile] = ACTIONS(139), + [sym_function_specifier] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(145), + [anon_sym_struct] = ACTIONS(147), + [anon_sym_union] = ACTIONS(149), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6614), [sym_comment] = ACTIONS(121), }, [1349] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(4470), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_STAR_EQ] = ACTIONS(4476), - [anon_sym_SLASH_EQ] = ACTIONS(4476), - [anon_sym_PERCENT_EQ] = ACTIONS(4476), - [anon_sym_PLUS_EQ] = ACTIONS(4476), - [anon_sym_DASH_EQ] = ACTIONS(4476), - [anon_sym_LT_LT_EQ] = ACTIONS(4476), - [anon_sym_GT_GT_EQ] = ACTIONS(4476), - [anon_sym_AMP_EQ] = ACTIONS(4476), - [anon_sym_CARET_EQ] = ACTIONS(4476), - [anon_sym_PIPE_EQ] = ACTIONS(4476), - [anon_sym_AMP] = ACTIONS(4479), - [anon_sym_PIPE_PIPE] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4482), - [anon_sym_PIPE] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym_EQ_EQ] = ACTIONS(4485), - [anon_sym_BANG_EQ] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4488), - [anon_sym_GT] = ACTIONS(4488), - [anon_sym_LT_EQ] = ACTIONS(4491), - [anon_sym_GT_EQ] = ACTIONS(4491), - [anon_sym_LT_LT] = ACTIONS(4494), - [anon_sym_GT_GT] = ACTIONS(4494), - [anon_sym_PLUS] = ACTIONS(4497), - [anon_sym_DASH] = ACTIONS(4497), - [anon_sym_SLASH] = ACTIONS(4464), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DOT] = ACTIONS(4503), - [anon_sym_DASH_GT] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_extern] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_typedef] = ACTIONS(208), + [anon_sym_static] = ACTIONS(208), + [anon_sym_auto] = ACTIONS(208), + [anon_sym_register] = ACTIONS(208), + [anon_sym_const] = ACTIONS(208), + [anon_sym_restrict] = ACTIONS(208), + [anon_sym_volatile] = ACTIONS(208), + [sym_function_specifier] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(121), }, [1350] = { - [sym__expression] = STATE(1419), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(7396), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1351] = { - [sym__expression] = STATE(1420), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1374), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1352] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(6607), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(7400), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1353] = { - [sym_declaration] = STATE(278), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(278), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6609), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5858), + [anon_sym_QMARK] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(847), + [anon_sym_AMP_AMP] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DASH_GT] = ACTIONS(847), [sym_comment] = ACTIONS(121), }, [1354] = { - [sym__expression] = STATE(1423), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(684), - [anon_sym_PLUS_PLUS] = ACTIONS(684), - [anon_sym_sizeof] = ACTIONS(686), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(7405), + [anon_sym_QMARK] = ACTIONS(7408), + [anon_sym_STAR_EQ] = ACTIONS(7411), + [anon_sym_SLASH_EQ] = ACTIONS(7411), + [anon_sym_PERCENT_EQ] = ACTIONS(7411), + [anon_sym_PLUS_EQ] = ACTIONS(7411), + [anon_sym_DASH_EQ] = ACTIONS(7411), + [anon_sym_LT_LT_EQ] = ACTIONS(7411), + [anon_sym_GT_GT_EQ] = ACTIONS(7411), + [anon_sym_AMP_EQ] = ACTIONS(7411), + [anon_sym_CARET_EQ] = ACTIONS(7411), + [anon_sym_PIPE_EQ] = ACTIONS(7411), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_PIPE_PIPE] = ACTIONS(7417), + [anon_sym_AMP_AMP] = ACTIONS(7417), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7420), + [anon_sym_BANG_EQ] = ACTIONS(7420), + [anon_sym_LT] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7426), + [anon_sym_GT_EQ] = ACTIONS(7426), + [anon_sym_LT_LT] = ACTIONS(7429), + [anon_sym_GT_GT] = ACTIONS(7429), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4529), [sym_comment] = ACTIONS(121), }, [1355] = { - [sym_declaration] = STATE(1424), - [sym__declaration_specifiers] = STATE(279), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym__expression] = STATE(1425), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(6611), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(740), + [sym__expression] = STATE(1354), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(7432), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(7435), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(7438), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(7440), + [anon_sym_DASH] = ACTIONS(7440), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(7443), + [anon_sym_PLUS_PLUS] = ACTIONS(7443), + [anon_sym_sizeof] = ACTIONS(2230), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1356] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), + [sym__expression] = STATE(1376), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1357] = { - [ts_builtin_sym_end] = ACTIONS(6615), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(6618), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(6618), - [anon_sym_LPAREN] = ACTIONS(6615), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(6618), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(6618), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(6618), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(6618), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(6618), - [sym_preproc_directive] = ACTIONS(6621), - [anon_sym_SEMI] = ACTIONS(6615), - [anon_sym_extern] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6615), - [anon_sym_RBRACE] = ACTIONS(6615), - [anon_sym_STAR] = ACTIONS(6615), - [anon_sym_typedef] = ACTIONS(6618), - [anon_sym_static] = ACTIONS(6618), - [anon_sym_auto] = ACTIONS(6618), - [anon_sym_register] = ACTIONS(6618), - [anon_sym_const] = ACTIONS(6618), - [anon_sym_restrict] = ACTIONS(6618), - [anon_sym_volatile] = ACTIONS(6618), - [sym_function_specifier] = ACTIONS(6618), - [anon_sym_unsigned] = ACTIONS(6618), - [anon_sym_long] = ACTIONS(6618), - [anon_sym_short] = ACTIONS(6618), - [anon_sym_enum] = ACTIONS(6618), - [anon_sym_struct] = ACTIONS(6618), - [anon_sym_union] = ACTIONS(6618), - [anon_sym_if] = ACTIONS(6618), - [anon_sym_switch] = ACTIONS(6618), - [anon_sym_case] = ACTIONS(6618), - [anon_sym_default] = ACTIONS(6618), - [anon_sym_while] = ACTIONS(6618), - [anon_sym_do] = ACTIONS(6618), - [anon_sym_for] = ACTIONS(6618), - [anon_sym_return] = ACTIONS(6618), - [anon_sym_break] = ACTIONS(6618), - [anon_sym_continue] = ACTIONS(6618), - [anon_sym_goto] = ACTIONS(6618), - [anon_sym_AMP] = ACTIONS(6615), - [anon_sym_BANG] = ACTIONS(6615), - [anon_sym_TILDE] = ACTIONS(6615), - [anon_sym_PLUS] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6618), - [anon_sym_DASH_DASH] = ACTIONS(6615), - [anon_sym_PLUS_PLUS] = ACTIONS(6615), - [anon_sym_sizeof] = ACTIONS(6618), - [sym_number_literal] = ACTIONS(6618), - [sym_char_literal] = ACTIONS(6618), - [sym_string_literal] = ACTIONS(6615), - [sym_identifier] = ACTIONS(6621), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(7446), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(7452), + [anon_sym_STAR_EQ] = ACTIONS(7455), + [anon_sym_SLASH_EQ] = ACTIONS(7455), + [anon_sym_PERCENT_EQ] = ACTIONS(7455), + [anon_sym_PLUS_EQ] = ACTIONS(7455), + [anon_sym_DASH_EQ] = ACTIONS(7455), + [anon_sym_LT_LT_EQ] = ACTIONS(7455), + [anon_sym_GT_GT_EQ] = ACTIONS(7455), + [anon_sym_AMP_EQ] = ACTIONS(7455), + [anon_sym_CARET_EQ] = ACTIONS(7455), + [anon_sym_PIPE_EQ] = ACTIONS(7455), + [anon_sym_AMP] = ACTIONS(7458), + [anon_sym_PIPE_PIPE] = ACTIONS(7461), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE] = ACTIONS(7458), + [anon_sym_CARET] = ACTIONS(7458), + [anon_sym_EQ_EQ] = ACTIONS(7464), + [anon_sym_BANG_EQ] = ACTIONS(7464), + [anon_sym_LT] = ACTIONS(7467), + [anon_sym_GT] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7470), + [anon_sym_GT_EQ] = ACTIONS(7470), + [anon_sym_LT_LT] = ACTIONS(7473), + [anon_sym_GT_GT] = ACTIONS(7473), + [anon_sym_PLUS] = ACTIONS(7446), + [anon_sym_DASH] = ACTIONS(7446), + [anon_sym_SLASH] = ACTIONS(7446), + [anon_sym_PERCENT] = ACTIONS(7446), + [anon_sym_DASH_DASH] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4529), [sym_comment] = ACTIONS(121), }, [1358] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym__expression] = STATE(1357), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(7476), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(7479), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(7482), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(7484), + [anon_sym_DASH] = ACTIONS(7484), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(7487), + [anon_sym_PLUS_PLUS] = ACTIONS(7487), + [anon_sym_sizeof] = ACTIONS(2264), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1359] = { - [ts_builtin_sym_end] = ACTIONS(6626), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(6630), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(6630), - [anon_sym_LPAREN] = ACTIONS(6626), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(6630), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(6630), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(6630), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(6630), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(6630), - [sym_preproc_directive] = ACTIONS(6634), - [anon_sym_SEMI] = ACTIONS(6626), - [anon_sym_extern] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_RBRACE] = ACTIONS(6626), - [anon_sym_STAR] = ACTIONS(6626), - [anon_sym_typedef] = ACTIONS(6630), - [anon_sym_static] = ACTIONS(6630), - [anon_sym_auto] = ACTIONS(6630), - [anon_sym_register] = ACTIONS(6630), - [anon_sym_const] = ACTIONS(6630), - [anon_sym_restrict] = ACTIONS(6630), - [anon_sym_volatile] = ACTIONS(6630), - [sym_function_specifier] = ACTIONS(6630), - [anon_sym_unsigned] = ACTIONS(6630), - [anon_sym_long] = ACTIONS(6630), - [anon_sym_short] = ACTIONS(6630), - [anon_sym_enum] = ACTIONS(6630), - [anon_sym_struct] = ACTIONS(6630), - [anon_sym_union] = ACTIONS(6630), - [anon_sym_if] = ACTIONS(6630), - [anon_sym_else] = ACTIONS(6630), - [anon_sym_switch] = ACTIONS(6630), - [anon_sym_case] = ACTIONS(6630), - [anon_sym_default] = ACTIONS(6630), - [anon_sym_while] = ACTIONS(6630), - [anon_sym_do] = ACTIONS(6630), - [anon_sym_for] = ACTIONS(6630), - [anon_sym_return] = ACTIONS(6630), - [anon_sym_break] = ACTIONS(6630), - [anon_sym_continue] = ACTIONS(6630), - [anon_sym_goto] = ACTIONS(6630), - [anon_sym_AMP] = ACTIONS(6626), - [anon_sym_BANG] = ACTIONS(6626), - [anon_sym_TILDE] = ACTIONS(6626), - [anon_sym_PLUS] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6630), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_sizeof] = ACTIONS(6630), - [sym_number_literal] = ACTIONS(6630), - [sym_char_literal] = ACTIONS(6630), - [sym_string_literal] = ACTIONS(6626), - [sym_identifier] = ACTIONS(6634), + [sym__expression] = STATE(1377), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1360] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(4759), - [anon_sym_RBRACE] = ACTIONS(4759), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_LT_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_GT_EQ] = ACTIONS(1624), - [anon_sym_AMP_EQ] = ACTIONS(1624), - [anon_sym_CARET_EQ] = ACTIONS(1624), - [anon_sym_PIPE_EQ] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_LT_EQ] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1361] = { - [anon_sym_COMMA] = ACTIONS(4759), - [anon_sym_RBRACE] = ACTIONS(4759), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(7490), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(7493), + [anon_sym_QMARK] = ACTIONS(7496), + [anon_sym_STAR_EQ] = ACTIONS(7499), + [anon_sym_SLASH_EQ] = ACTIONS(7499), + [anon_sym_PERCENT_EQ] = ACTIONS(7499), + [anon_sym_PLUS_EQ] = ACTIONS(7499), + [anon_sym_DASH_EQ] = ACTIONS(7499), + [anon_sym_LT_LT_EQ] = ACTIONS(7499), + [anon_sym_GT_GT_EQ] = ACTIONS(7499), + [anon_sym_AMP_EQ] = ACTIONS(7499), + [anon_sym_CARET_EQ] = ACTIONS(7499), + [anon_sym_PIPE_EQ] = ACTIONS(7499), + [anon_sym_AMP] = ACTIONS(7502), + [anon_sym_PIPE_PIPE] = ACTIONS(7505), + [anon_sym_AMP_AMP] = ACTIONS(7505), + [anon_sym_PIPE] = ACTIONS(7502), + [anon_sym_CARET] = ACTIONS(7502), + [anon_sym_EQ_EQ] = ACTIONS(7508), + [anon_sym_BANG_EQ] = ACTIONS(7508), + [anon_sym_LT] = ACTIONS(7511), + [anon_sym_GT] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7514), + [anon_sym_GT_EQ] = ACTIONS(7514), + [anon_sym_LT_LT] = ACTIONS(7517), + [anon_sym_GT_GT] = ACTIONS(7517), + [anon_sym_PLUS] = ACTIONS(7490), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_SLASH] = ACTIONS(7490), + [anon_sym_PERCENT] = ACTIONS(7490), + [anon_sym_DASH_DASH] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4529), [sym_comment] = ACTIONS(121), }, [1362] = { - [sym__expression] = STATE(1428), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1361), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_initializer_list] = STATE(549), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(7520), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(7526), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(7531), + [anon_sym_PLUS_PLUS] = ACTIONS(7531), + [anon_sym_sizeof] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1363] = { - [anon_sym_RPAREN] = ACTIONS(6638), + [sym__expression] = STATE(1378), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2760), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1364] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(6640), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym__pound_endif] = ACTIONS(1852), + [sym__pound_else] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(7534), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [1365] = { - [ts_builtin_sym_end] = ACTIONS(6643), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(6647), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(6647), - [anon_sym_LPAREN] = ACTIONS(6643), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(6647), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(6647), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(6647), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(6647), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(6647), - [sym_preproc_directive] = ACTIONS(6651), - [anon_sym_SEMI] = ACTIONS(6643), - [anon_sym_extern] = ACTIONS(6647), - [anon_sym_LBRACE] = ACTIONS(6643), - [anon_sym_RBRACE] = ACTIONS(6643), - [anon_sym_STAR] = ACTIONS(6643), - [anon_sym_typedef] = ACTIONS(6647), - [anon_sym_static] = ACTIONS(6647), - [anon_sym_auto] = ACTIONS(6647), - [anon_sym_register] = ACTIONS(6647), - [anon_sym_const] = ACTIONS(6647), - [anon_sym_restrict] = ACTIONS(6647), - [anon_sym_volatile] = ACTIONS(6647), - [sym_function_specifier] = ACTIONS(6647), - [anon_sym_unsigned] = ACTIONS(6647), - [anon_sym_long] = ACTIONS(6647), - [anon_sym_short] = ACTIONS(6647), - [anon_sym_enum] = ACTIONS(6647), - [anon_sym_struct] = ACTIONS(6647), - [anon_sym_union] = ACTIONS(6647), - [anon_sym_if] = ACTIONS(6647), - [anon_sym_else] = ACTIONS(6655), - [anon_sym_switch] = ACTIONS(6647), - [anon_sym_case] = ACTIONS(6647), - [anon_sym_default] = ACTIONS(6647), - [anon_sym_while] = ACTIONS(6647), - [anon_sym_do] = ACTIONS(6647), - [anon_sym_for] = ACTIONS(6647), - [anon_sym_return] = ACTIONS(6647), - [anon_sym_break] = ACTIONS(6647), - [anon_sym_continue] = ACTIONS(6647), - [anon_sym_goto] = ACTIONS(6647), - [anon_sym_AMP] = ACTIONS(6643), - [anon_sym_BANG] = ACTIONS(6643), - [anon_sym_TILDE] = ACTIONS(6643), - [anon_sym_PLUS] = ACTIONS(6647), - [anon_sym_DASH] = ACTIONS(6647), - [anon_sym_DASH_DASH] = ACTIONS(6643), - [anon_sym_PLUS_PLUS] = ACTIONS(6643), - [anon_sym_sizeof] = ACTIONS(6647), - [sym_number_literal] = ACTIONS(6647), - [sym_char_literal] = ACTIONS(6647), - [sym_string_literal] = ACTIONS(6643), - [sym_identifier] = ACTIONS(6651), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1366] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(6557), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(7537), [sym_comment] = ACTIONS(121), }, [1367] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(6562), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(6660), - [anon_sym_LBRACK] = ACTIONS(6568), - [anon_sym_EQ] = ACTIONS(6663), - [anon_sym_QMARK] = ACTIONS(6666), - [anon_sym_STAR_EQ] = ACTIONS(6669), - [anon_sym_SLASH_EQ] = ACTIONS(6669), - [anon_sym_PERCENT_EQ] = ACTIONS(6669), - [anon_sym_PLUS_EQ] = ACTIONS(6669), - [anon_sym_DASH_EQ] = ACTIONS(6669), - [anon_sym_LT_LT_EQ] = ACTIONS(6669), - [anon_sym_GT_GT_EQ] = ACTIONS(6669), - [anon_sym_AMP_EQ] = ACTIONS(6669), - [anon_sym_CARET_EQ] = ACTIONS(6669), - [anon_sym_PIPE_EQ] = ACTIONS(6669), - [anon_sym_AMP] = ACTIONS(6672), - [anon_sym_PIPE_PIPE] = ACTIONS(6675), - [anon_sym_AMP_AMP] = ACTIONS(6675), - [anon_sym_PIPE] = ACTIONS(6672), - [anon_sym_CARET] = ACTIONS(6672), - [anon_sym_EQ_EQ] = ACTIONS(6678), - [anon_sym_BANG_EQ] = ACTIONS(6678), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_LT_EQ] = ACTIONS(6684), - [anon_sym_GT_EQ] = ACTIONS(6684), - [anon_sym_LT_LT] = ACTIONS(6687), - [anon_sym_GT_GT] = ACTIONS(6687), - [anon_sym_PLUS] = ACTIONS(6660), - [anon_sym_DASH] = ACTIONS(6660), - [anon_sym_SLASH] = ACTIONS(6660), - [anon_sym_PERCENT] = ACTIONS(6660), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6604), - [anon_sym_DASH_GT] = ACTIONS(6604), + [anon_sym_LPAREN] = ACTIONS(7539), + [sym__pound_include] = ACTIONS(7542), + [sym__pound_define] = ACTIONS(7542), + [sym__pound_if] = ACTIONS(7542), + [sym__pound_ifdef] = ACTIONS(7542), + [sym__pound_endif] = ACTIONS(7542), + [sym__pound_else] = ACTIONS(7542), + [sym_preproc_directive] = ACTIONS(7545), + [anon_sym_SEMI] = ACTIONS(7539), + [anon_sym_extern] = ACTIONS(7542), + [anon_sym_LBRACE] = ACTIONS(7539), + [anon_sym_RBRACE] = ACTIONS(7539), + [anon_sym_STAR] = ACTIONS(7539), + [anon_sym_typedef] = ACTIONS(7542), + [anon_sym_static] = ACTIONS(7542), + [anon_sym_auto] = ACTIONS(7542), + [anon_sym_register] = ACTIONS(7542), + [anon_sym_const] = ACTIONS(7542), + [anon_sym_restrict] = ACTIONS(7542), + [anon_sym_volatile] = ACTIONS(7542), + [sym_function_specifier] = ACTIONS(7542), + [anon_sym_unsigned] = ACTIONS(7542), + [anon_sym_long] = ACTIONS(7542), + [anon_sym_short] = ACTIONS(7542), + [anon_sym_enum] = ACTIONS(7542), + [anon_sym_struct] = ACTIONS(7542), + [anon_sym_union] = ACTIONS(7542), + [anon_sym_if] = ACTIONS(7542), + [anon_sym_else] = ACTIONS(7542), + [anon_sym_switch] = ACTIONS(7542), + [anon_sym_case] = ACTIONS(7542), + [anon_sym_default] = ACTIONS(7542), + [anon_sym_while] = ACTIONS(7542), + [anon_sym_do] = ACTIONS(7542), + [anon_sym_for] = ACTIONS(7542), + [anon_sym_return] = ACTIONS(7542), + [anon_sym_break] = ACTIONS(7542), + [anon_sym_continue] = ACTIONS(7542), + [anon_sym_goto] = ACTIONS(7542), + [anon_sym_AMP] = ACTIONS(7539), + [anon_sym_BANG] = ACTIONS(7539), + [anon_sym_TILDE] = ACTIONS(7539), + [anon_sym_PLUS] = ACTIONS(7542), + [anon_sym_DASH] = ACTIONS(7542), + [anon_sym_DASH_DASH] = ACTIONS(7539), + [anon_sym_PLUS_PLUS] = ACTIONS(7539), + [anon_sym_sizeof] = ACTIONS(7542), + [sym_number_literal] = ACTIONS(7542), + [sym_char_literal] = ACTIONS(7542), + [sym_string_literal] = ACTIONS(7539), + [sym_identifier] = ACTIONS(7545), [sym_comment] = ACTIONS(121), }, [1368] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4696), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(6690), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(6693), - [anon_sym_QMARK] = ACTIONS(6696), - [anon_sym_STAR_EQ] = ACTIONS(6699), - [anon_sym_SLASH_EQ] = ACTIONS(6699), - [anon_sym_PERCENT_EQ] = ACTIONS(6699), - [anon_sym_PLUS_EQ] = ACTIONS(6699), - [anon_sym_DASH_EQ] = ACTIONS(6699), - [anon_sym_LT_LT_EQ] = ACTIONS(6699), - [anon_sym_GT_GT_EQ] = ACTIONS(6699), - [anon_sym_AMP_EQ] = ACTIONS(6699), - [anon_sym_CARET_EQ] = ACTIONS(6699), - [anon_sym_PIPE_EQ] = ACTIONS(6699), - [anon_sym_AMP] = ACTIONS(6702), - [anon_sym_PIPE_PIPE] = ACTIONS(6705), - [anon_sym_AMP_AMP] = ACTIONS(6705), - [anon_sym_PIPE] = ACTIONS(6702), - [anon_sym_CARET] = ACTIONS(6702), - [anon_sym_EQ_EQ] = ACTIONS(6708), - [anon_sym_BANG_EQ] = ACTIONS(6708), - [anon_sym_LT] = ACTIONS(6711), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_LT_EQ] = ACTIONS(6714), - [anon_sym_GT_EQ] = ACTIONS(6714), - [anon_sym_LT_LT] = ACTIONS(6717), - [anon_sym_GT_GT] = ACTIONS(6717), - [anon_sym_PLUS] = ACTIONS(6690), - [anon_sym_DASH] = ACTIONS(6690), - [anon_sym_SLASH] = ACTIONS(6690), - [anon_sym_PERCENT] = ACTIONS(6690), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4752), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1380), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(7537), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1369] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(6720), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(1381), + [sym_labeled_statement] = STATE(1381), + [sym_expression_statement] = STATE(1381), + [sym_if_statement] = STATE(1381), + [sym_switch_statement] = STATE(1381), + [sym_case_statement] = STATE(1381), + [sym_while_statement] = STATE(1381), + [sym_do_statement] = STATE(1381), + [sym_for_statement] = STATE(1381), + [sym_return_statement] = STATE(1381), + [sym_break_statement] = STATE(1381), + [sym_continue_statement] = STATE(1381), + [sym_goto_statement] = STATE(1381), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1370] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(6725), - [anon_sym_QMARK] = ACTIONS(6728), - [anon_sym_STAR_EQ] = ACTIONS(6731), - [anon_sym_SLASH_EQ] = ACTIONS(6731), - [anon_sym_PERCENT_EQ] = ACTIONS(6731), - [anon_sym_PLUS_EQ] = ACTIONS(6731), - [anon_sym_DASH_EQ] = ACTIONS(6731), - [anon_sym_LT_LT_EQ] = ACTIONS(6731), - [anon_sym_GT_GT_EQ] = ACTIONS(6731), - [anon_sym_AMP_EQ] = ACTIONS(6731), - [anon_sym_CARET_EQ] = ACTIONS(6731), - [anon_sym_PIPE_EQ] = ACTIONS(6731), - [anon_sym_AMP] = ACTIONS(6734), - [anon_sym_PIPE_PIPE] = ACTIONS(6737), - [anon_sym_AMP_AMP] = ACTIONS(6737), - [anon_sym_PIPE] = ACTIONS(6734), - [anon_sym_CARET] = ACTIONS(6734), - [anon_sym_EQ_EQ] = ACTIONS(6740), - [anon_sym_BANG_EQ] = ACTIONS(6740), - [anon_sym_LT] = ACTIONS(6743), - [anon_sym_GT] = ACTIONS(6743), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6749), - [anon_sym_GT_GT] = ACTIONS(6749), - [anon_sym_PLUS] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6722), - [anon_sym_SLASH] = ACTIONS(6722), - [anon_sym_PERCENT] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(5078), - [anon_sym_PLUS_PLUS] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_DASH_GT] = ACTIONS(5081), + [sym_compound_statement] = STATE(1382), + [sym_labeled_statement] = STATE(1382), + [sym_expression_statement] = STATE(1382), + [sym_if_statement] = STATE(1382), + [sym_switch_statement] = STATE(1382), + [sym_case_statement] = STATE(1382), + [sym_while_statement] = STATE(1382), + [sym_do_statement] = STATE(1382), + [sym_for_statement] = STATE(1382), + [sym_return_statement] = STATE(1382), + [sym_break_statement] = STATE(1382), + [sym_continue_statement] = STATE(1382), + [sym_goto_statement] = STATE(1382), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1371] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(6755), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_STAR_EQ] = ACTIONS(6761), - [anon_sym_SLASH_EQ] = ACTIONS(6761), - [anon_sym_PERCENT_EQ] = ACTIONS(6761), - [anon_sym_PLUS_EQ] = ACTIONS(6761), - [anon_sym_DASH_EQ] = ACTIONS(6761), - [anon_sym_LT_LT_EQ] = ACTIONS(6761), - [anon_sym_GT_GT_EQ] = ACTIONS(6761), - [anon_sym_AMP_EQ] = ACTIONS(6761), - [anon_sym_CARET_EQ] = ACTIONS(6761), - [anon_sym_PIPE_EQ] = ACTIONS(6761), - [anon_sym_AMP] = ACTIONS(6764), - [anon_sym_PIPE_PIPE] = ACTIONS(6767), - [anon_sym_AMP_AMP] = ACTIONS(6767), - [anon_sym_PIPE] = ACTIONS(6764), - [anon_sym_CARET] = ACTIONS(6764), - [anon_sym_EQ_EQ] = ACTIONS(6770), - [anon_sym_BANG_EQ] = ACTIONS(6770), - [anon_sym_LT] = ACTIONS(6773), - [anon_sym_GT] = ACTIONS(6773), - [anon_sym_LT_EQ] = ACTIONS(6776), - [anon_sym_GT_EQ] = ACTIONS(6776), - [anon_sym_LT_LT] = ACTIONS(6779), - [anon_sym_GT_GT] = ACTIONS(6779), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_compound_statement] = STATE(674), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_case_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1372] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(6782), - [anon_sym_LBRACK] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(6785), - [anon_sym_QMARK] = ACTIONS(6788), - [anon_sym_STAR_EQ] = ACTIONS(6791), - [anon_sym_SLASH_EQ] = ACTIONS(6791), - [anon_sym_PERCENT_EQ] = ACTIONS(6791), - [anon_sym_PLUS_EQ] = ACTIONS(6791), - [anon_sym_DASH_EQ] = ACTIONS(6791), - [anon_sym_LT_LT_EQ] = ACTIONS(6791), - [anon_sym_GT_GT_EQ] = ACTIONS(6791), - [anon_sym_AMP_EQ] = ACTIONS(6791), - [anon_sym_CARET_EQ] = ACTIONS(6791), - [anon_sym_PIPE_EQ] = ACTIONS(6791), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_PIPE_PIPE] = ACTIONS(6797), - [anon_sym_AMP_AMP] = ACTIONS(6797), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_LT] = ACTIONS(6803), - [anon_sym_GT] = ACTIONS(6803), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_GT_EQ] = ACTIONS(6806), - [anon_sym_LT_LT] = ACTIONS(6809), - [anon_sym_GT_GT] = ACTIONS(6809), - [anon_sym_PLUS] = ACTIONS(6782), - [anon_sym_DASH] = ACTIONS(6782), - [anon_sym_SLASH] = ACTIONS(6782), - [anon_sym_PERCENT] = ACTIONS(6782), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_DASH_GT] = ACTIONS(5171), + [sym_compound_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1373] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5174), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_EQ] = ACTIONS(6815), - [anon_sym_QMARK] = ACTIONS(6818), - [anon_sym_STAR_EQ] = ACTIONS(6821), - [anon_sym_SLASH_EQ] = ACTIONS(6821), - [anon_sym_PERCENT_EQ] = ACTIONS(6821), - [anon_sym_PLUS_EQ] = ACTIONS(6821), - [anon_sym_DASH_EQ] = ACTIONS(6821), - [anon_sym_LT_LT_EQ] = ACTIONS(6821), - [anon_sym_GT_GT_EQ] = ACTIONS(6821), - [anon_sym_AMP_EQ] = ACTIONS(6821), - [anon_sym_CARET_EQ] = ACTIONS(6821), - [anon_sym_PIPE_EQ] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6824), - [anon_sym_PIPE_PIPE] = ACTIONS(6827), - [anon_sym_AMP_AMP] = ACTIONS(6827), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_CARET] = ACTIONS(6824), - [anon_sym_EQ_EQ] = ACTIONS(6830), - [anon_sym_BANG_EQ] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6833), - [anon_sym_GT] = ACTIONS(6833), - [anon_sym_LT_EQ] = ACTIONS(6836), - [anon_sym_GT_EQ] = ACTIONS(6836), - [anon_sym_LT_LT] = ACTIONS(6839), - [anon_sym_GT_GT] = ACTIONS(6839), - [anon_sym_PLUS] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6812), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_DASH_DASH] = ACTIONS(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5213), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), + [sym__expression] = STATE(1384), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(7548), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1374] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(6842), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_EQ] = ACTIONS(6845), - [anon_sym_QMARK] = ACTIONS(6848), - [anon_sym_STAR_EQ] = ACTIONS(6851), - [anon_sym_SLASH_EQ] = ACTIONS(6851), - [anon_sym_PERCENT_EQ] = ACTIONS(6851), - [anon_sym_PLUS_EQ] = ACTIONS(6851), - [anon_sym_DASH_EQ] = ACTIONS(6851), - [anon_sym_LT_LT_EQ] = ACTIONS(6851), - [anon_sym_GT_GT_EQ] = ACTIONS(6851), - [anon_sym_AMP_EQ] = ACTIONS(6851), - [anon_sym_CARET_EQ] = ACTIONS(6851), - [anon_sym_PIPE_EQ] = ACTIONS(6851), - [anon_sym_AMP] = ACTIONS(6854), - [anon_sym_PIPE_PIPE] = ACTIONS(6857), - [anon_sym_AMP_AMP] = ACTIONS(6857), - [anon_sym_PIPE] = ACTIONS(6854), - [anon_sym_CARET] = ACTIONS(6854), - [anon_sym_EQ_EQ] = ACTIONS(6860), - [anon_sym_BANG_EQ] = ACTIONS(6860), - [anon_sym_LT] = ACTIONS(6863), - [anon_sym_GT] = ACTIONS(6863), - [anon_sym_LT_EQ] = ACTIONS(6866), - [anon_sym_GT_EQ] = ACTIONS(6866), - [anon_sym_LT_LT] = ACTIONS(6869), - [anon_sym_GT_GT] = ACTIONS(6869), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_SLASH] = ACTIONS(6842), - [anon_sym_PERCENT] = ACTIONS(6842), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DASH_GT] = ACTIONS(5261), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(7550), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1375] = { - [sym__expression] = STATE(1431), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym__expression] = STATE(1386), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(7550), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(689), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1376] = { - [anon_sym_RPAREN] = ACTIONS(6872), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(7552), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(7555), + [anon_sym_QMARK] = ACTIONS(7558), + [anon_sym_STAR_EQ] = ACTIONS(7561), + [anon_sym_SLASH_EQ] = ACTIONS(7561), + [anon_sym_PERCENT_EQ] = ACTIONS(7561), + [anon_sym_PLUS_EQ] = ACTIONS(7561), + [anon_sym_DASH_EQ] = ACTIONS(7561), + [anon_sym_LT_LT_EQ] = ACTIONS(7561), + [anon_sym_GT_GT_EQ] = ACTIONS(7561), + [anon_sym_AMP_EQ] = ACTIONS(7561), + [anon_sym_CARET_EQ] = ACTIONS(7561), + [anon_sym_PIPE_EQ] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7564), + [anon_sym_PIPE_PIPE] = ACTIONS(7567), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE] = ACTIONS(7564), + [anon_sym_CARET] = ACTIONS(7564), + [anon_sym_EQ_EQ] = ACTIONS(7570), + [anon_sym_BANG_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7573), + [anon_sym_GT] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7576), + [anon_sym_GT_EQ] = ACTIONS(7576), + [anon_sym_LT_LT] = ACTIONS(7579), + [anon_sym_GT_GT] = ACTIONS(7579), + [anon_sym_PLUS] = ACTIONS(7552), + [anon_sym_DASH] = ACTIONS(7552), + [anon_sym_SLASH] = ACTIONS(7552), + [anon_sym_PERCENT] = ACTIONS(7552), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4852), [sym_comment] = ACTIONS(121), }, [1377] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(6874), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4281), - [anon_sym_STAR_EQ] = ACTIONS(4283), - [anon_sym_SLASH_EQ] = ACTIONS(4283), - [anon_sym_PERCENT_EQ] = ACTIONS(4283), - [anon_sym_PLUS_EQ] = ACTIONS(4283), - [anon_sym_DASH_EQ] = ACTIONS(4283), - [anon_sym_LT_LT_EQ] = ACTIONS(4283), - [anon_sym_GT_GT_EQ] = ACTIONS(4283), - [anon_sym_AMP_EQ] = ACTIONS(4283), - [anon_sym_CARET_EQ] = ACTIONS(4283), - [anon_sym_PIPE_EQ] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4285), - [anon_sym_PIPE_PIPE] = ACTIONS(4287), - [anon_sym_AMP_AMP] = ACTIONS(4287), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_CARET] = ACTIONS(4285), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_LT] = ACTIONS(4291), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4293), - [anon_sym_LT_LT] = ACTIONS(4295), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4277), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4277), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(7582), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(7585), + [anon_sym_QMARK] = ACTIONS(7588), + [anon_sym_STAR_EQ] = ACTIONS(7591), + [anon_sym_SLASH_EQ] = ACTIONS(7591), + [anon_sym_PERCENT_EQ] = ACTIONS(7591), + [anon_sym_PLUS_EQ] = ACTIONS(7591), + [anon_sym_DASH_EQ] = ACTIONS(7591), + [anon_sym_LT_LT_EQ] = ACTIONS(7591), + [anon_sym_GT_GT_EQ] = ACTIONS(7591), + [anon_sym_AMP_EQ] = ACTIONS(7591), + [anon_sym_CARET_EQ] = ACTIONS(7591), + [anon_sym_PIPE_EQ] = ACTIONS(7591), + [anon_sym_AMP] = ACTIONS(7594), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7594), + [anon_sym_CARET] = ACTIONS(7594), + [anon_sym_EQ_EQ] = ACTIONS(7600), + [anon_sym_BANG_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7603), + [anon_sym_GT] = ACTIONS(7603), + [anon_sym_LT_EQ] = ACTIONS(7606), + [anon_sym_GT_EQ] = ACTIONS(7606), + [anon_sym_LT_LT] = ACTIONS(7609), + [anon_sym_GT_GT] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7582), + [anon_sym_DASH] = ACTIONS(7582), + [anon_sym_SLASH] = ACTIONS(7582), + [anon_sym_PERCENT] = ACTIONS(7582), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4852), [sym_comment] = ACTIONS(121), }, [1378] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(6562), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(6876), - [anon_sym_LBRACK] = ACTIONS(6568), - [anon_sym_EQ] = ACTIONS(6879), - [anon_sym_QMARK] = ACTIONS(6882), - [anon_sym_STAR_EQ] = ACTIONS(6885), - [anon_sym_SLASH_EQ] = ACTIONS(6885), - [anon_sym_PERCENT_EQ] = ACTIONS(6885), - [anon_sym_PLUS_EQ] = ACTIONS(6885), - [anon_sym_DASH_EQ] = ACTIONS(6885), - [anon_sym_LT_LT_EQ] = ACTIONS(6885), - [anon_sym_GT_GT_EQ] = ACTIONS(6885), - [anon_sym_AMP_EQ] = ACTIONS(6885), - [anon_sym_CARET_EQ] = ACTIONS(6885), - [anon_sym_PIPE_EQ] = ACTIONS(6885), - [anon_sym_AMP] = ACTIONS(6888), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6888), - [anon_sym_CARET] = ACTIONS(6888), - [anon_sym_EQ_EQ] = ACTIONS(6894), - [anon_sym_BANG_EQ] = ACTIONS(6894), - [anon_sym_LT] = ACTIONS(6897), - [anon_sym_GT] = ACTIONS(6897), - [anon_sym_LT_EQ] = ACTIONS(6900), - [anon_sym_GT_EQ] = ACTIONS(6900), - [anon_sym_LT_LT] = ACTIONS(6903), - [anon_sym_GT_GT] = ACTIONS(6903), - [anon_sym_PLUS] = ACTIONS(6876), - [anon_sym_DASH] = ACTIONS(6876), - [anon_sym_SLASH] = ACTIONS(6876), - [anon_sym_PERCENT] = ACTIONS(6876), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6604), - [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(7612), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(7615), + [anon_sym_QMARK] = ACTIONS(7618), + [anon_sym_STAR_EQ] = ACTIONS(7621), + [anon_sym_SLASH_EQ] = ACTIONS(7621), + [anon_sym_PERCENT_EQ] = ACTIONS(7621), + [anon_sym_PLUS_EQ] = ACTIONS(7621), + [anon_sym_DASH_EQ] = ACTIONS(7621), + [anon_sym_LT_LT_EQ] = ACTIONS(7621), + [anon_sym_GT_GT_EQ] = ACTIONS(7621), + [anon_sym_AMP_EQ] = ACTIONS(7621), + [anon_sym_CARET_EQ] = ACTIONS(7621), + [anon_sym_PIPE_EQ] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7624), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7624), + [anon_sym_CARET] = ACTIONS(7624), + [anon_sym_EQ_EQ] = ACTIONS(7630), + [anon_sym_BANG_EQ] = ACTIONS(7630), + [anon_sym_LT] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7633), + [anon_sym_LT_EQ] = ACTIONS(7636), + [anon_sym_GT_EQ] = ACTIONS(7636), + [anon_sym_LT_LT] = ACTIONS(7639), + [anon_sym_GT_GT] = ACTIONS(7639), + [anon_sym_PLUS] = ACTIONS(7612), + [anon_sym_DASH] = ACTIONS(7612), + [anon_sym_SLASH] = ACTIONS(7612), + [anon_sym_PERCENT] = ACTIONS(7612), + [anon_sym_DASH_DASH] = ACTIONS(4849), + [anon_sym_PLUS_PLUS] = ACTIONS(4849), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4852), [sym_comment] = ACTIONS(121), }, [1379] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4696), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(6906), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(6909), - [anon_sym_QMARK] = ACTIONS(6912), - [anon_sym_STAR_EQ] = ACTIONS(6915), - [anon_sym_SLASH_EQ] = ACTIONS(6915), - [anon_sym_PERCENT_EQ] = ACTIONS(6915), - [anon_sym_PLUS_EQ] = ACTIONS(6915), - [anon_sym_DASH_EQ] = ACTIONS(6915), - [anon_sym_LT_LT_EQ] = ACTIONS(6915), - [anon_sym_GT_GT_EQ] = ACTIONS(6915), - [anon_sym_AMP_EQ] = ACTIONS(6915), - [anon_sym_CARET_EQ] = ACTIONS(6915), - [anon_sym_PIPE_EQ] = ACTIONS(6915), - [anon_sym_AMP] = ACTIONS(6918), - [anon_sym_PIPE_PIPE] = ACTIONS(6921), - [anon_sym_AMP_AMP] = ACTIONS(6921), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_CARET] = ACTIONS(6918), - [anon_sym_EQ_EQ] = ACTIONS(6924), - [anon_sym_BANG_EQ] = ACTIONS(6924), - [anon_sym_LT] = ACTIONS(6927), - [anon_sym_GT] = ACTIONS(6927), - [anon_sym_LT_EQ] = ACTIONS(6930), - [anon_sym_GT_EQ] = ACTIONS(6930), - [anon_sym_LT_LT] = ACTIONS(6933), - [anon_sym_GT_GT] = ACTIONS(6933), - [anon_sym_PLUS] = ACTIONS(6906), - [anon_sym_DASH] = ACTIONS(6906), - [anon_sym_SLASH] = ACTIONS(6906), - [anon_sym_PERCENT] = ACTIONS(6906), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4752), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1380] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(6936), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(7642), [sym_comment] = ACTIONS(121), }, [1381] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(6938), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(6941), - [anon_sym_QMARK] = ACTIONS(6944), - [anon_sym_STAR_EQ] = ACTIONS(6947), - [anon_sym_SLASH_EQ] = ACTIONS(6947), - [anon_sym_PERCENT_EQ] = ACTIONS(6947), - [anon_sym_PLUS_EQ] = ACTIONS(6947), - [anon_sym_DASH_EQ] = ACTIONS(6947), - [anon_sym_LT_LT_EQ] = ACTIONS(6947), - [anon_sym_GT_GT_EQ] = ACTIONS(6947), - [anon_sym_AMP_EQ] = ACTIONS(6947), - [anon_sym_CARET_EQ] = ACTIONS(6947), - [anon_sym_PIPE_EQ] = ACTIONS(6947), - [anon_sym_AMP] = ACTIONS(6950), - [anon_sym_PIPE_PIPE] = ACTIONS(6953), - [anon_sym_AMP_AMP] = ACTIONS(6953), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_CARET] = ACTIONS(6950), - [anon_sym_EQ_EQ] = ACTIONS(6956), - [anon_sym_BANG_EQ] = ACTIONS(6956), - [anon_sym_LT] = ACTIONS(6959), - [anon_sym_GT] = ACTIONS(6959), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_LT_LT] = ACTIONS(6965), - [anon_sym_GT_GT] = ACTIONS(6965), - [anon_sym_PLUS] = ACTIONS(6938), - [anon_sym_DASH] = ACTIONS(6938), - [anon_sym_SLASH] = ACTIONS(6938), - [anon_sym_PERCENT] = ACTIONS(6938), - [anon_sym_DASH_DASH] = ACTIONS(5078), - [anon_sym_PLUS_PLUS] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_DASH_GT] = ACTIONS(5081), + [anon_sym_LPAREN] = ACTIONS(7644), + [sym__pound_include] = ACTIONS(7647), + [sym__pound_define] = ACTIONS(7647), + [sym__pound_if] = ACTIONS(7647), + [sym__pound_ifdef] = ACTIONS(7647), + [sym__pound_endif] = ACTIONS(7647), + [sym__pound_else] = ACTIONS(7647), + [sym_preproc_directive] = ACTIONS(7650), + [anon_sym_SEMI] = ACTIONS(7644), + [anon_sym_extern] = ACTIONS(7647), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_RBRACE] = ACTIONS(7644), + [anon_sym_STAR] = ACTIONS(7644), + [anon_sym_typedef] = ACTIONS(7647), + [anon_sym_static] = ACTIONS(7647), + [anon_sym_auto] = ACTIONS(7647), + [anon_sym_register] = ACTIONS(7647), + [anon_sym_const] = ACTIONS(7647), + [anon_sym_restrict] = ACTIONS(7647), + [anon_sym_volatile] = ACTIONS(7647), + [sym_function_specifier] = ACTIONS(7647), + [anon_sym_unsigned] = ACTIONS(7647), + [anon_sym_long] = ACTIONS(7647), + [anon_sym_short] = ACTIONS(7647), + [anon_sym_enum] = ACTIONS(7647), + [anon_sym_struct] = ACTIONS(7647), + [anon_sym_union] = ACTIONS(7647), + [anon_sym_if] = ACTIONS(7647), + [anon_sym_else] = ACTIONS(7647), + [anon_sym_switch] = ACTIONS(7647), + [anon_sym_case] = ACTIONS(7647), + [anon_sym_default] = ACTIONS(7647), + [anon_sym_while] = ACTIONS(7647), + [anon_sym_do] = ACTIONS(7647), + [anon_sym_for] = ACTIONS(7647), + [anon_sym_return] = ACTIONS(7647), + [anon_sym_break] = ACTIONS(7647), + [anon_sym_continue] = ACTIONS(7647), + [anon_sym_goto] = ACTIONS(7647), + [anon_sym_AMP] = ACTIONS(7644), + [anon_sym_BANG] = ACTIONS(7644), + [anon_sym_TILDE] = ACTIONS(7644), + [anon_sym_PLUS] = ACTIONS(7647), + [anon_sym_DASH] = ACTIONS(7647), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_sizeof] = ACTIONS(7647), + [sym_number_literal] = ACTIONS(7647), + [sym_char_literal] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7644), + [sym_identifier] = ACTIONS(7650), [sym_comment] = ACTIONS(121), }, [1382] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(6968), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(6971), - [anon_sym_QMARK] = ACTIONS(6974), - [anon_sym_STAR_EQ] = ACTIONS(6977), - [anon_sym_SLASH_EQ] = ACTIONS(6977), - [anon_sym_PERCENT_EQ] = ACTIONS(6977), - [anon_sym_PLUS_EQ] = ACTIONS(6977), - [anon_sym_DASH_EQ] = ACTIONS(6977), - [anon_sym_LT_LT_EQ] = ACTIONS(6977), - [anon_sym_GT_GT_EQ] = ACTIONS(6977), - [anon_sym_AMP_EQ] = ACTIONS(6977), - [anon_sym_CARET_EQ] = ACTIONS(6977), - [anon_sym_PIPE_EQ] = ACTIONS(6977), - [anon_sym_AMP] = ACTIONS(6980), - [anon_sym_PIPE_PIPE] = ACTIONS(6983), - [anon_sym_AMP_AMP] = ACTIONS(6983), - [anon_sym_PIPE] = ACTIONS(6980), - [anon_sym_CARET] = ACTIONS(6980), - [anon_sym_EQ_EQ] = ACTIONS(6986), - [anon_sym_BANG_EQ] = ACTIONS(6986), - [anon_sym_LT] = ACTIONS(6989), - [anon_sym_GT] = ACTIONS(6989), - [anon_sym_LT_EQ] = ACTIONS(6992), - [anon_sym_GT_EQ] = ACTIONS(6992), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym_PLUS] = ACTIONS(6968), - [anon_sym_DASH] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6968), - [anon_sym_PERCENT] = ACTIONS(6968), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(1850), + [sym__pound_include] = ACTIONS(1852), + [sym__pound_define] = ACTIONS(1852), + [sym__pound_if] = ACTIONS(1852), + [sym__pound_ifdef] = ACTIONS(1852), + [sym__pound_endif] = ACTIONS(1852), + [sym__pound_else] = ACTIONS(1852), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [sym_function_specifier] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(7653), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [sym_string_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1854), [sym_comment] = ACTIONS(121), }, [1383] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(6998), - [anon_sym_LBRACK] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_QMARK] = ACTIONS(7004), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7010), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7010), - [anon_sym_CARET] = ACTIONS(7010), - [anon_sym_EQ_EQ] = ACTIONS(7016), - [anon_sym_BANG_EQ] = ACTIONS(7016), - [anon_sym_LT] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7019), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_LT] = ACTIONS(7025), - [anon_sym_GT_GT] = ACTIONS(7025), - [anon_sym_PLUS] = ACTIONS(6998), - [anon_sym_DASH] = ACTIONS(6998), - [anon_sym_SLASH] = ACTIONS(6998), - [anon_sym_PERCENT] = ACTIONS(6998), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_DASH_GT] = ACTIONS(5171), + [sym_compound_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1384] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5174), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(7028), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_EQ] = ACTIONS(7031), - [anon_sym_QMARK] = ACTIONS(7034), - [anon_sym_STAR_EQ] = ACTIONS(7037), - [anon_sym_SLASH_EQ] = ACTIONS(7037), - [anon_sym_PERCENT_EQ] = ACTIONS(7037), - [anon_sym_PLUS_EQ] = ACTIONS(7037), - [anon_sym_DASH_EQ] = ACTIONS(7037), - [anon_sym_LT_LT_EQ] = ACTIONS(7037), - [anon_sym_GT_GT_EQ] = ACTIONS(7037), - [anon_sym_AMP_EQ] = ACTIONS(7037), - [anon_sym_CARET_EQ] = ACTIONS(7037), - [anon_sym_PIPE_EQ] = ACTIONS(7037), - [anon_sym_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7043), - [anon_sym_AMP_AMP] = ACTIONS(7043), - [anon_sym_PIPE] = ACTIONS(7040), - [anon_sym_CARET] = ACTIONS(7040), - [anon_sym_EQ_EQ] = ACTIONS(7046), - [anon_sym_BANG_EQ] = ACTIONS(7046), - [anon_sym_LT] = ACTIONS(7049), - [anon_sym_GT] = ACTIONS(7049), - [anon_sym_LT_EQ] = ACTIONS(7052), - [anon_sym_GT_EQ] = ACTIONS(7052), - [anon_sym_LT_LT] = ACTIONS(7055), - [anon_sym_GT_GT] = ACTIONS(7055), - [anon_sym_PLUS] = ACTIONS(7028), - [anon_sym_DASH] = ACTIONS(7028), - [anon_sym_SLASH] = ACTIONS(7028), - [anon_sym_PERCENT] = ACTIONS(7028), - [anon_sym_DASH_DASH] = ACTIONS(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5213), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1390), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1385] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(7058), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_EQ] = ACTIONS(7061), - [anon_sym_QMARK] = ACTIONS(7064), - [anon_sym_STAR_EQ] = ACTIONS(7067), - [anon_sym_SLASH_EQ] = ACTIONS(7067), - [anon_sym_PERCENT_EQ] = ACTIONS(7067), - [anon_sym_PLUS_EQ] = ACTIONS(7067), - [anon_sym_DASH_EQ] = ACTIONS(7067), - [anon_sym_LT_LT_EQ] = ACTIONS(7067), - [anon_sym_GT_GT_EQ] = ACTIONS(7067), - [anon_sym_AMP_EQ] = ACTIONS(7067), - [anon_sym_CARET_EQ] = ACTIONS(7067), - [anon_sym_PIPE_EQ] = ACTIONS(7067), - [anon_sym_AMP] = ACTIONS(7070), - [anon_sym_PIPE_PIPE] = ACTIONS(7073), - [anon_sym_AMP_AMP] = ACTIONS(7073), - [anon_sym_PIPE] = ACTIONS(7070), - [anon_sym_CARET] = ACTIONS(7070), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_LT] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7082), - [anon_sym_GT_EQ] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7058), - [anon_sym_DASH] = ACTIONS(7058), - [anon_sym_SLASH] = ACTIONS(7058), - [anon_sym_PERCENT] = ACTIONS(7058), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DASH_GT] = ACTIONS(5261), + [sym__expression] = STATE(1391), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1386] = { - [sym__expression] = STATE(1349), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2938), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_argument_list] = STATE(299), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(7657), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1063), + [anon_sym_SLASH_EQ] = ACTIONS(1063), + [anon_sym_PERCENT_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LT_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_GT_EQ] = ACTIONS(1063), + [anon_sym_AMP_EQ] = ACTIONS(1063), + [anon_sym_CARET_EQ] = ACTIONS(1063), + [anon_sym_PIPE_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_EQ_EQ] = ACTIONS(1075), + [anon_sym_BANG_EQ] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1387] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(7088), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(2986), [sym_comment] = ACTIONS(121), }, [1388] = { - [ts_builtin_sym_end] = ACTIONS(7090), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(7093), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(7093), - [anon_sym_LPAREN] = ACTIONS(7090), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(7093), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(7093), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(7093), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(7093), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(7093), - [sym_preproc_directive] = ACTIONS(7096), - [anon_sym_SEMI] = ACTIONS(7090), - [anon_sym_extern] = ACTIONS(7093), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_typedef] = ACTIONS(7093), - [anon_sym_static] = ACTIONS(7093), - [anon_sym_auto] = ACTIONS(7093), - [anon_sym_register] = ACTIONS(7093), - [anon_sym_const] = ACTIONS(7093), - [anon_sym_restrict] = ACTIONS(7093), - [anon_sym_volatile] = ACTIONS(7093), - [sym_function_specifier] = ACTIONS(7093), - [anon_sym_unsigned] = ACTIONS(7093), - [anon_sym_long] = ACTIONS(7093), - [anon_sym_short] = ACTIONS(7093), - [anon_sym_enum] = ACTIONS(7093), - [anon_sym_struct] = ACTIONS(7093), - [anon_sym_union] = ACTIONS(7093), - [anon_sym_if] = ACTIONS(7093), - [anon_sym_else] = ACTIONS(7093), - [anon_sym_switch] = ACTIONS(7093), - [anon_sym_case] = ACTIONS(7093), - [anon_sym_default] = ACTIONS(7093), - [anon_sym_while] = ACTIONS(7093), - [anon_sym_do] = ACTIONS(7093), - [anon_sym_for] = ACTIONS(7093), - [anon_sym_return] = ACTIONS(7093), - [anon_sym_break] = ACTIONS(7093), - [anon_sym_continue] = ACTIONS(7093), - [anon_sym_goto] = ACTIONS(7093), - [anon_sym_AMP] = ACTIONS(7090), - [anon_sym_BANG] = ACTIONS(7090), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_PLUS] = ACTIONS(7093), - [anon_sym_DASH] = ACTIONS(7093), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_sizeof] = ACTIONS(7093), - [sym_number_literal] = ACTIONS(7093), - [sym_char_literal] = ACTIONS(7093), - [sym_string_literal] = ACTIONS(7090), - [sym_identifier] = ACTIONS(7096), + [sym_compound_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1389] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(6555), + [sym_compound_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1390] = { - [ts_builtin_sym_end] = ACTIONS(7099), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(7103), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(7103), - [anon_sym_LPAREN] = ACTIONS(7099), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(7103), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(7103), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(7103), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(7103), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(7103), - [sym_preproc_directive] = ACTIONS(7107), - [anon_sym_SEMI] = ACTIONS(7099), - [anon_sym_extern] = ACTIONS(7103), - [anon_sym_LBRACE] = ACTIONS(7099), - [anon_sym_RBRACE] = ACTIONS(7099), - [anon_sym_STAR] = ACTIONS(7099), - [anon_sym_typedef] = ACTIONS(7103), - [anon_sym_static] = ACTIONS(7103), - [anon_sym_auto] = ACTIONS(7103), - [anon_sym_register] = ACTIONS(7103), - [anon_sym_const] = ACTIONS(7103), - [anon_sym_restrict] = ACTIONS(7103), - [anon_sym_volatile] = ACTIONS(7103), - [sym_function_specifier] = ACTIONS(7103), - [anon_sym_unsigned] = ACTIONS(7103), - [anon_sym_long] = ACTIONS(7103), - [anon_sym_short] = ACTIONS(7103), - [anon_sym_enum] = ACTIONS(7103), - [anon_sym_struct] = ACTIONS(7103), - [anon_sym_union] = ACTIONS(7103), - [anon_sym_if] = ACTIONS(7103), - [anon_sym_else] = ACTIONS(7103), - [anon_sym_switch] = ACTIONS(7103), - [anon_sym_case] = ACTIONS(7103), - [anon_sym_default] = ACTIONS(7103), - [anon_sym_while] = ACTIONS(7103), - [anon_sym_do] = ACTIONS(7103), - [anon_sym_for] = ACTIONS(7103), - [anon_sym_return] = ACTIONS(7103), - [anon_sym_break] = ACTIONS(7103), - [anon_sym_continue] = ACTIONS(7103), - [anon_sym_goto] = ACTIONS(7103), - [anon_sym_AMP] = ACTIONS(7099), - [anon_sym_BANG] = ACTIONS(7099), - [anon_sym_TILDE] = ACTIONS(7099), - [anon_sym_PLUS] = ACTIONS(7103), - [anon_sym_DASH] = ACTIONS(7103), - [anon_sym_DASH_DASH] = ACTIONS(7099), - [anon_sym_PLUS_PLUS] = ACTIONS(7099), - [anon_sym_sizeof] = ACTIONS(7103), - [sym_number_literal] = ACTIONS(7103), - [sym_char_literal] = ACTIONS(7103), - [sym_string_literal] = ACTIONS(7099), - [sym_identifier] = ACTIONS(7107), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(7659), [sym_comment] = ACTIONS(121), }, [1391] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1418), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(6555), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1394), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1392] = { - [sym_compound_statement] = STATE(1359), - [sym_labeled_statement] = STATE(1359), - [sym_expression_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_switch_statement] = STATE(1359), - [sym_case_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_do_statement] = STATE(1359), - [sym_for_statement] = STATE(1359), - [sym_return_statement] = STATE(1359), - [sym_break_statement] = STATE(1359), - [sym_continue_statement] = STATE(1359), - [sym_goto_statement] = STATE(1359), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), + [sym__expression] = STATE(1395), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_sizeof] = ACTIONS(769), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(583), [sym_comment] = ACTIONS(121), }, [1393] = { - [sym__expression] = STATE(1435), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), + [sym_compound_statement] = STATE(827), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(827), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(827), + [sym_case_statement] = STATE(827), + [sym_while_statement] = STATE(827), + [sym_do_statement] = STATE(827), + [sym_for_statement] = STATE(827), + [sym_return_statement] = STATE(827), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(827), + [sym_goto_statement] = STATE(827), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1394] = { - [anon_sym_RPAREN] = ACTIONS(7111), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(7661), [sym_comment] = ACTIONS(121), }, [1395] = { - [sym__declarator] = STATE(84), - [sym__field_declarator] = STATE(418), - [sym_pointer_declarator] = STATE(44), - [sym_pointer_field_declarator] = STATE(245), - [sym_function_declarator] = STATE(44), - [sym_function_field_declarator] = STATE(246), - [sym_array_declarator] = STATE(44), - [sym_array_field_declarator] = STATE(247), - [anon_sym_LPAREN] = ACTIONS(4588), - [anon_sym_STAR] = ACTIONS(6429), - [sym_identifier] = ACTIONS(6431), + [sym_argument_list] = STATE(299), + [aux_sym_for_statement_repeat1] = STATE(1397), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(7661), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), [sym_comment] = ACTIONS(121), }, [1396] = { - [anon_sym_LPAREN] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), + [sym_compound_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, [1397] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(6562), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(7113), - [anon_sym_LBRACK] = ACTIONS(6568), - [anon_sym_EQ] = ACTIONS(7116), - [anon_sym_QMARK] = ACTIONS(7119), - [anon_sym_STAR_EQ] = ACTIONS(7122), - [anon_sym_SLASH_EQ] = ACTIONS(7122), - [anon_sym_PERCENT_EQ] = ACTIONS(7122), - [anon_sym_PLUS_EQ] = ACTIONS(7122), - [anon_sym_DASH_EQ] = ACTIONS(7122), - [anon_sym_LT_LT_EQ] = ACTIONS(7122), - [anon_sym_GT_GT_EQ] = ACTIONS(7122), - [anon_sym_AMP_EQ] = ACTIONS(7122), - [anon_sym_CARET_EQ] = ACTIONS(7122), - [anon_sym_PIPE_EQ] = ACTIONS(7122), - [anon_sym_AMP] = ACTIONS(7125), - [anon_sym_PIPE_PIPE] = ACTIONS(7128), - [anon_sym_AMP_AMP] = ACTIONS(7128), - [anon_sym_PIPE] = ACTIONS(7125), - [anon_sym_CARET] = ACTIONS(7125), - [anon_sym_EQ_EQ] = ACTIONS(7131), - [anon_sym_BANG_EQ] = ACTIONS(7131), - [anon_sym_LT] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7137), - [anon_sym_GT_EQ] = ACTIONS(7137), - [anon_sym_LT_LT] = ACTIONS(7140), - [anon_sym_GT_GT] = ACTIONS(7140), - [anon_sym_PLUS] = ACTIONS(7113), - [anon_sym_DASH] = ACTIONS(7113), - [anon_sym_SLASH] = ACTIONS(7113), - [anon_sym_PERCENT] = ACTIONS(7113), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6604), - [anon_sym_DASH_GT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(7663), [sym_comment] = ACTIONS(121), }, [1398] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4696), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(7143), - [anon_sym_LBRACK] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(7146), - [anon_sym_QMARK] = ACTIONS(7149), - [anon_sym_STAR_EQ] = ACTIONS(7152), - [anon_sym_SLASH_EQ] = ACTIONS(7152), - [anon_sym_PERCENT_EQ] = ACTIONS(7152), - [anon_sym_PLUS_EQ] = ACTIONS(7152), - [anon_sym_DASH_EQ] = ACTIONS(7152), - [anon_sym_LT_LT_EQ] = ACTIONS(7152), - [anon_sym_GT_GT_EQ] = ACTIONS(7152), - [anon_sym_AMP_EQ] = ACTIONS(7152), - [anon_sym_CARET_EQ] = ACTIONS(7152), - [anon_sym_PIPE_EQ] = ACTIONS(7152), - [anon_sym_AMP] = ACTIONS(7155), - [anon_sym_PIPE_PIPE] = ACTIONS(7158), - [anon_sym_AMP_AMP] = ACTIONS(7158), - [anon_sym_PIPE] = ACTIONS(7155), - [anon_sym_CARET] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7161), - [anon_sym_BANG_EQ] = ACTIONS(7161), - [anon_sym_LT] = ACTIONS(7164), - [anon_sym_GT] = ACTIONS(7164), - [anon_sym_LT_EQ] = ACTIONS(7167), - [anon_sym_GT_EQ] = ACTIONS(7167), - [anon_sym_LT_LT] = ACTIONS(7170), - [anon_sym_GT_GT] = ACTIONS(7170), - [anon_sym_PLUS] = ACTIONS(7143), - [anon_sym_DASH] = ACTIONS(7143), - [anon_sym_SLASH] = ACTIONS(7143), - [anon_sym_PERCENT] = ACTIONS(7143), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4749), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DASH_GT] = ACTIONS(4752), - [sym_comment] = ACTIONS(121), - }, - [1399] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(7173), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_STAR_EQ] = ACTIONS(700), - [anon_sym_SLASH_EQ] = ACTIONS(700), - [anon_sym_PERCENT_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(700), - [anon_sym_DASH_EQ] = ACTIONS(700), - [anon_sym_LT_LT_EQ] = ACTIONS(700), - [anon_sym_GT_GT_EQ] = ACTIONS(700), - [anon_sym_AMP_EQ] = ACTIONS(700), - [anon_sym_CARET_EQ] = ACTIONS(700), - [anon_sym_PIPE_EQ] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(714), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1400] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(7175), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(7178), - [anon_sym_QMARK] = ACTIONS(7181), - [anon_sym_STAR_EQ] = ACTIONS(7184), - [anon_sym_SLASH_EQ] = ACTIONS(7184), - [anon_sym_PERCENT_EQ] = ACTIONS(7184), - [anon_sym_PLUS_EQ] = ACTIONS(7184), - [anon_sym_DASH_EQ] = ACTIONS(7184), - [anon_sym_LT_LT_EQ] = ACTIONS(7184), - [anon_sym_GT_GT_EQ] = ACTIONS(7184), - [anon_sym_AMP_EQ] = ACTIONS(7184), - [anon_sym_CARET_EQ] = ACTIONS(7184), - [anon_sym_PIPE_EQ] = ACTIONS(7184), - [anon_sym_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(7190), - [anon_sym_PIPE] = ACTIONS(7187), - [anon_sym_CARET] = ACTIONS(7187), - [anon_sym_EQ_EQ] = ACTIONS(7193), - [anon_sym_BANG_EQ] = ACTIONS(7193), - [anon_sym_LT] = ACTIONS(7196), - [anon_sym_GT] = ACTIONS(7196), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7202), - [anon_sym_GT_GT] = ACTIONS(7202), - [anon_sym_PLUS] = ACTIONS(7175), - [anon_sym_DASH] = ACTIONS(7175), - [anon_sym_SLASH] = ACTIONS(7175), - [anon_sym_PERCENT] = ACTIONS(7175), - [anon_sym_DASH_DASH] = ACTIONS(5078), - [anon_sym_PLUS_PLUS] = ACTIONS(5078), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_DASH_GT] = ACTIONS(5081), - [sym_comment] = ACTIONS(121), - }, - [1401] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4949), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(7208), - [anon_sym_QMARK] = ACTIONS(7211), - [anon_sym_STAR_EQ] = ACTIONS(7214), - [anon_sym_SLASH_EQ] = ACTIONS(7214), - [anon_sym_PERCENT_EQ] = ACTIONS(7214), - [anon_sym_PLUS_EQ] = ACTIONS(7214), - [anon_sym_DASH_EQ] = ACTIONS(7214), - [anon_sym_LT_LT_EQ] = ACTIONS(7214), - [anon_sym_GT_GT_EQ] = ACTIONS(7214), - [anon_sym_AMP_EQ] = ACTIONS(7214), - [anon_sym_CARET_EQ] = ACTIONS(7214), - [anon_sym_PIPE_EQ] = ACTIONS(7214), - [anon_sym_AMP] = ACTIONS(7217), - [anon_sym_PIPE_PIPE] = ACTIONS(7220), - [anon_sym_AMP_AMP] = ACTIONS(7220), - [anon_sym_PIPE] = ACTIONS(7217), - [anon_sym_CARET] = ACTIONS(7217), - [anon_sym_EQ_EQ] = ACTIONS(7223), - [anon_sym_BANG_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7226), - [anon_sym_GT] = ACTIONS(7226), - [anon_sym_LT_EQ] = ACTIONS(7229), - [anon_sym_GT_EQ] = ACTIONS(7229), - [anon_sym_LT_LT] = ACTIONS(7232), - [anon_sym_GT_GT] = ACTIONS(7232), - [anon_sym_PLUS] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7205), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4991), - [sym_comment] = ACTIONS(121), - }, - [1402] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5129), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_LBRACK] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(7238), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_STAR_EQ] = ACTIONS(7244), - [anon_sym_SLASH_EQ] = ACTIONS(7244), - [anon_sym_PERCENT_EQ] = ACTIONS(7244), - [anon_sym_PLUS_EQ] = ACTIONS(7244), - [anon_sym_DASH_EQ] = ACTIONS(7244), - [anon_sym_LT_LT_EQ] = ACTIONS(7244), - [anon_sym_GT_GT_EQ] = ACTIONS(7244), - [anon_sym_AMP_EQ] = ACTIONS(7244), - [anon_sym_CARET_EQ] = ACTIONS(7244), - [anon_sym_PIPE_EQ] = ACTIONS(7244), - [anon_sym_AMP] = ACTIONS(7247), - [anon_sym_PIPE_PIPE] = ACTIONS(7250), - [anon_sym_AMP_AMP] = ACTIONS(7250), - [anon_sym_PIPE] = ACTIONS(7247), - [anon_sym_CARET] = ACTIONS(7247), - [anon_sym_EQ_EQ] = ACTIONS(7253), - [anon_sym_BANG_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7256), - [anon_sym_GT] = ACTIONS(7256), - [anon_sym_LT_EQ] = ACTIONS(7259), - [anon_sym_GT_EQ] = ACTIONS(7259), - [anon_sym_LT_LT] = ACTIONS(7262), - [anon_sym_GT_GT] = ACTIONS(7262), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_DASH_GT] = ACTIONS(5171), - [sym_comment] = ACTIONS(121), - }, - [1403] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5174), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(7265), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_EQ] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(7271), - [anon_sym_STAR_EQ] = ACTIONS(7274), - [anon_sym_SLASH_EQ] = ACTIONS(7274), - [anon_sym_PERCENT_EQ] = ACTIONS(7274), - [anon_sym_PLUS_EQ] = ACTIONS(7274), - [anon_sym_DASH_EQ] = ACTIONS(7274), - [anon_sym_LT_LT_EQ] = ACTIONS(7274), - [anon_sym_GT_GT_EQ] = ACTIONS(7274), - [anon_sym_AMP_EQ] = ACTIONS(7274), - [anon_sym_CARET_EQ] = ACTIONS(7274), - [anon_sym_PIPE_EQ] = ACTIONS(7274), - [anon_sym_AMP] = ACTIONS(7277), - [anon_sym_PIPE_PIPE] = ACTIONS(7280), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE] = ACTIONS(7277), - [anon_sym_CARET] = ACTIONS(7277), - [anon_sym_EQ_EQ] = ACTIONS(7283), - [anon_sym_BANG_EQ] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(7286), - [anon_sym_GT] = ACTIONS(7286), - [anon_sym_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_LT] = ACTIONS(7292), - [anon_sym_GT_GT] = ACTIONS(7292), - [anon_sym_PLUS] = ACTIONS(7265), - [anon_sym_DASH] = ACTIONS(7265), - [anon_sym_SLASH] = ACTIONS(7265), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_DASH_DASH] = ACTIONS(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5213), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), - [sym_comment] = ACTIONS(121), - }, - [1404] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_LBRACK] = ACTIONS(5225), - [anon_sym_EQ] = ACTIONS(7298), - [anon_sym_QMARK] = ACTIONS(7301), - [anon_sym_STAR_EQ] = ACTIONS(7304), - [anon_sym_SLASH_EQ] = ACTIONS(7304), - [anon_sym_PERCENT_EQ] = ACTIONS(7304), - [anon_sym_PLUS_EQ] = ACTIONS(7304), - [anon_sym_DASH_EQ] = ACTIONS(7304), - [anon_sym_LT_LT_EQ] = ACTIONS(7304), - [anon_sym_GT_GT_EQ] = ACTIONS(7304), - [anon_sym_AMP_EQ] = ACTIONS(7304), - [anon_sym_CARET_EQ] = ACTIONS(7304), - [anon_sym_PIPE_EQ] = ACTIONS(7304), - [anon_sym_AMP] = ACTIONS(7307), - [anon_sym_PIPE_PIPE] = ACTIONS(7310), - [anon_sym_AMP_AMP] = ACTIONS(7310), - [anon_sym_PIPE] = ACTIONS(7307), - [anon_sym_CARET] = ACTIONS(7307), - [anon_sym_EQ_EQ] = ACTIONS(7313), - [anon_sym_BANG_EQ] = ACTIONS(7313), - [anon_sym_LT] = ACTIONS(7316), - [anon_sym_GT] = ACTIONS(7316), - [anon_sym_LT_EQ] = ACTIONS(7319), - [anon_sym_GT_EQ] = ACTIONS(7319), - [anon_sym_LT_LT] = ACTIONS(7322), - [anon_sym_GT_GT] = ACTIONS(7322), - [anon_sym_PLUS] = ACTIONS(7295), - [anon_sym_DASH] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7295), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DASH_GT] = ACTIONS(5261), - [sym_comment] = ACTIONS(121), - }, - [1405] = { - [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(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1406] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1407] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(1953), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(7325), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1955), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(7328), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(5582), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(7331), - [anon_sym_typedef] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_auto] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_restrict] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [sym_function_specifier] = ACTIONS(1955), - [anon_sym_unsigned] = ACTIONS(1955), - [anon_sym_long] = ACTIONS(1955), - [anon_sym_short] = ACTIONS(1955), - [anon_sym_enum] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_union] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(5597), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_switch] = ACTIONS(5600), - [anon_sym_case] = ACTIONS(5603), - [anon_sym_default] = ACTIONS(5606), - [anon_sym_while] = ACTIONS(5609), - [anon_sym_do] = ACTIONS(5612), - [anon_sym_for] = ACTIONS(5615), - [anon_sym_return] = ACTIONS(5618), - [anon_sym_break] = ACTIONS(5621), - [anon_sym_continue] = ACTIONS(5624), - [anon_sym_goto] = ACTIONS(5627), - [anon_sym_AMP] = ACTIONS(7331), - [anon_sym_BANG] = ACTIONS(7334), - [anon_sym_TILDE] = ACTIONS(5633), - [anon_sym_PLUS] = ACTIONS(7337), - [anon_sym_DASH] = ACTIONS(7337), - [anon_sym_DASH_DASH] = ACTIONS(7340), - [anon_sym_PLUS_PLUS] = ACTIONS(7340), - [anon_sym_sizeof] = ACTIONS(5646), - [sym_number_literal] = ACTIONS(5649), - [sym_char_literal] = ACTIONS(5649), - [sym_string_literal] = ACTIONS(5652), - [sym_identifier] = ACTIONS(5655), - [sym_comment] = ACTIONS(121), - }, - [1408] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_COLON] = ACTIONS(1829), - [anon_sym_QMARK] = ACTIONS(4798), - [anon_sym_STAR_EQ] = ACTIONS(4801), - [anon_sym_SLASH_EQ] = ACTIONS(4801), - [anon_sym_PERCENT_EQ] = ACTIONS(4801), - [anon_sym_PLUS_EQ] = ACTIONS(4801), - [anon_sym_DASH_EQ] = ACTIONS(4801), - [anon_sym_LT_LT_EQ] = ACTIONS(4801), - [anon_sym_GT_GT_EQ] = ACTIONS(4801), - [anon_sym_AMP_EQ] = ACTIONS(4801), - [anon_sym_CARET_EQ] = ACTIONS(4801), - [anon_sym_PIPE_EQ] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_CARET] = ACTIONS(4804), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_BANG_EQ] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4813), - [anon_sym_GT] = ACTIONS(4813), - [anon_sym_LT_EQ] = ACTIONS(4816), - [anon_sym_GT_EQ] = ACTIONS(4816), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4822), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_PERCENT] = ACTIONS(4789), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4828), - [anon_sym_DASH_GT] = ACTIONS(4828), - [sym_comment] = ACTIONS(121), - }, - [1409] = { - [sym__expression] = STATE(1349), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(7346), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_COLON] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(7346), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(7352), - [anon_sym_PLUS_PLUS] = ACTIONS(7352), - [anon_sym_sizeof] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1410] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(7358), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_RBRACK] = ACTIONS(1528), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_auto] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_restrict] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [sym_function_specifier] = ACTIONS(1530), - [anon_sym_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(7358), - [anon_sym_BANG] = ACTIONS(7361), - [anon_sym_TILDE] = ACTIONS(7364), - [anon_sym_PLUS] = ACTIONS(7367), - [anon_sym_DASH] = ACTIONS(7367), - [anon_sym_DASH_DASH] = ACTIONS(7370), - [anon_sym_PLUS_PLUS] = ACTIONS(7370), - [anon_sym_sizeof] = ACTIONS(7373), - [sym_number_literal] = ACTIONS(5817), - [sym_char_literal] = ACTIONS(5817), - [sym_string_literal] = ACTIONS(5820), - [sym_identifier] = ACTIONS(5823), - [sym_comment] = ACTIONS(121), - }, - [1411] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1412] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(7376), - [sym_comment] = ACTIONS(121), - }, - [1413] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1440), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(7376), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1414] = { - [anon_sym_LPAREN] = ACTIONS(7378), - [anon_sym_SEMI] = ACTIONS(7378), - [anon_sym_extern] = ACTIONS(7381), - [anon_sym_RBRACE] = ACTIONS(7378), - [anon_sym_STAR] = ACTIONS(7378), - [anon_sym_typedef] = ACTIONS(7381), - [anon_sym_static] = ACTIONS(7381), - [anon_sym_auto] = ACTIONS(7381), - [anon_sym_register] = ACTIONS(7381), - [anon_sym_const] = ACTIONS(7381), - [anon_sym_restrict] = ACTIONS(7381), - [anon_sym_volatile] = ACTIONS(7381), - [sym_function_specifier] = ACTIONS(7381), - [anon_sym_unsigned] = ACTIONS(7381), - [anon_sym_long] = ACTIONS(7381), - [anon_sym_short] = ACTIONS(7381), - [anon_sym_enum] = ACTIONS(7381), - [anon_sym_struct] = ACTIONS(7381), - [anon_sym_union] = ACTIONS(7381), - [anon_sym_COLON] = ACTIONS(7378), - [sym_identifier] = ACTIONS(7384), - [sym_comment] = ACTIONS(121), - }, - [1415] = { - [ts_builtin_sym_end] = ACTIONS(7387), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(7390), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(7390), - [anon_sym_LPAREN] = ACTIONS(7387), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(7390), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(7390), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(7390), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(7390), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(7390), - [sym_preproc_directive] = ACTIONS(7393), - [anon_sym_SEMI] = ACTIONS(7387), - [anon_sym_extern] = ACTIONS(7390), - [anon_sym_LBRACE] = ACTIONS(7387), - [anon_sym_RBRACE] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_typedef] = ACTIONS(7390), - [anon_sym_static] = ACTIONS(7390), - [anon_sym_auto] = ACTIONS(7390), - [anon_sym_register] = ACTIONS(7390), - [anon_sym_const] = ACTIONS(7390), - [anon_sym_restrict] = ACTIONS(7390), - [anon_sym_volatile] = ACTIONS(7390), - [sym_function_specifier] = ACTIONS(7390), - [anon_sym_unsigned] = ACTIONS(7390), - [anon_sym_long] = ACTIONS(7390), - [anon_sym_short] = ACTIONS(7390), - [anon_sym_enum] = ACTIONS(7390), - [anon_sym_struct] = ACTIONS(7390), - [anon_sym_union] = ACTIONS(7390), - [anon_sym_if] = ACTIONS(7390), - [anon_sym_else] = ACTIONS(7390), - [anon_sym_switch] = ACTIONS(7390), - [anon_sym_case] = ACTIONS(7390), - [anon_sym_default] = ACTIONS(7390), - [anon_sym_while] = ACTIONS(7390), - [anon_sym_do] = ACTIONS(7390), - [anon_sym_for] = ACTIONS(7390), - [anon_sym_return] = ACTIONS(7390), - [anon_sym_break] = ACTIONS(7390), - [anon_sym_continue] = ACTIONS(7390), - [anon_sym_goto] = ACTIONS(7390), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_BANG] = ACTIONS(7387), - [anon_sym_TILDE] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7390), - [anon_sym_DASH] = ACTIONS(7390), - [anon_sym_DASH_DASH] = ACTIONS(7387), - [anon_sym_PLUS_PLUS] = ACTIONS(7387), - [anon_sym_sizeof] = ACTIONS(7390), - [sym_number_literal] = ACTIONS(7390), - [sym_char_literal] = ACTIONS(7390), - [sym_string_literal] = ACTIONS(7387), - [sym_identifier] = ACTIONS(7393), - [sym_comment] = ACTIONS(121), - }, - [1416] = { - [sym_compound_statement] = STATE(1441), - [sym_labeled_statement] = STATE(1441), - [sym_expression_statement] = STATE(1441), - [sym_if_statement] = STATE(1441), - [sym_switch_statement] = STATE(1441), - [sym_case_statement] = STATE(1441), - [sym_while_statement] = STATE(1441), - [sym_do_statement] = STATE(1441), - [sym_for_statement] = STATE(1441), - [sym_return_statement] = STATE(1441), - [sym_break_statement] = STATE(1441), - [sym_continue_statement] = STATE(1441), - [sym_goto_statement] = STATE(1441), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1417] = { - [sym__expression] = STATE(1442), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(7376), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1418] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(7396), - [sym_comment] = ACTIONS(121), - }, - [1419] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(7398), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1420] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(7400), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1421] = { - [sym_declaration] = STATE(449), - [sym__declaration_specifiers] = STATE(279), - [sym_compound_statement] = STATE(449), - [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(45), - [sym_sized_type_specifier] = STATE(46), - [sym_enum_specifier] = STATE(46), - [sym_struct_specifier] = STATE(46), - [sym_union_specifier] = STATE(46), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [sym_macro_type_specifier] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_static] = ACTIONS(145), - [anon_sym_auto] = ACTIONS(145), - [anon_sym_register] = ACTIONS(145), - [anon_sym_const] = ACTIONS(147), - [anon_sym_restrict] = ACTIONS(147), - [anon_sym_volatile] = ACTIONS(147), - [sym_function_specifier] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(151), - [anon_sym_long] = ACTIONS(151), - [anon_sym_short] = ACTIONS(151), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(155), - [anon_sym_union] = ACTIONS(157), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6609), - [sym_comment] = ACTIONS(121), - }, - [1422] = { - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_typedef] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_auto] = ACTIONS(373), - [anon_sym_register] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_restrict] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [sym_function_specifier] = ACTIONS(373), - [anon_sym_COLON] = ACTIONS(5854), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(387), - [sym_comment] = ACTIONS(121), - }, - [1423] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1424] = { - [sym__expression] = STATE(1448), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(7404), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1425] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(7406), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1426] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(5854), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_comment] = ACTIONS(121), - }, - [1427] = { - [anon_sym_LPAREN] = ACTIONS(7408), - [anon_sym_SEMI] = ACTIONS(7408), - [anon_sym_extern] = ACTIONS(7411), - [anon_sym_RBRACE] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7408), - [anon_sym_typedef] = ACTIONS(7411), - [anon_sym_static] = ACTIONS(7411), - [anon_sym_auto] = ACTIONS(7411), - [anon_sym_register] = ACTIONS(7411), - [anon_sym_const] = ACTIONS(7411), - [anon_sym_restrict] = ACTIONS(7411), - [anon_sym_volatile] = ACTIONS(7411), - [sym_function_specifier] = ACTIONS(7411), - [anon_sym_unsigned] = ACTIONS(7411), - [anon_sym_long] = ACTIONS(7411), - [anon_sym_short] = ACTIONS(7411), - [anon_sym_enum] = ACTIONS(7411), - [anon_sym_struct] = ACTIONS(7411), - [anon_sym_union] = ACTIONS(7411), - [anon_sym_COLON] = ACTIONS(7408), - [sym_identifier] = ACTIONS(7414), - [sym_comment] = ACTIONS(121), - }, - [1428] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(7417), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_QMARK] = ACTIONS(7423), - [anon_sym_STAR_EQ] = ACTIONS(7426), - [anon_sym_SLASH_EQ] = ACTIONS(7426), - [anon_sym_PERCENT_EQ] = ACTIONS(7426), - [anon_sym_PLUS_EQ] = ACTIONS(7426), - [anon_sym_DASH_EQ] = ACTIONS(7426), - [anon_sym_LT_LT_EQ] = ACTIONS(7426), - [anon_sym_GT_GT_EQ] = ACTIONS(7426), - [anon_sym_AMP_EQ] = ACTIONS(7426), - [anon_sym_CARET_EQ] = ACTIONS(7426), - [anon_sym_PIPE_EQ] = ACTIONS(7426), - [anon_sym_AMP] = ACTIONS(7429), - [anon_sym_PIPE_PIPE] = ACTIONS(7432), - [anon_sym_AMP_AMP] = ACTIONS(7432), - [anon_sym_PIPE] = ACTIONS(7429), - [anon_sym_CARET] = ACTIONS(7429), - [anon_sym_EQ_EQ] = ACTIONS(7435), - [anon_sym_BANG_EQ] = ACTIONS(7435), - [anon_sym_LT] = ACTIONS(7438), - [anon_sym_GT] = ACTIONS(7438), - [anon_sym_LT_EQ] = ACTIONS(7441), - [anon_sym_GT_EQ] = ACTIONS(7441), - [anon_sym_LT_LT] = ACTIONS(7444), - [anon_sym_GT_GT] = ACTIONS(7444), - [anon_sym_PLUS] = ACTIONS(7417), - [anon_sym_DASH] = ACTIONS(7417), - [anon_sym_SLASH] = ACTIONS(7417), - [anon_sym_PERCENT] = ACTIONS(7417), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DOT] = ACTIONS(4503), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_comment] = ACTIONS(121), - }, - [1429] = { - [sym__expression] = STATE(1428), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(7447), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(7450), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(7450), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(7453), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(7455), - [anon_sym_DASH] = ACTIONS(7455), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(7458), - [anon_sym_PLUS_PLUS] = ACTIONS(7458), - [anon_sym_sizeof] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1430] = { - [sym__expression] = STATE(1450), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1431] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(7461), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(7464), - [anon_sym_QMARK] = ACTIONS(7467), - [anon_sym_STAR_EQ] = ACTIONS(7470), - [anon_sym_SLASH_EQ] = ACTIONS(7470), - [anon_sym_PERCENT_EQ] = ACTIONS(7470), - [anon_sym_PLUS_EQ] = ACTIONS(7470), - [anon_sym_DASH_EQ] = ACTIONS(7470), - [anon_sym_LT_LT_EQ] = ACTIONS(7470), - [anon_sym_GT_GT_EQ] = ACTIONS(7470), - [anon_sym_AMP_EQ] = ACTIONS(7470), - [anon_sym_CARET_EQ] = ACTIONS(7470), - [anon_sym_PIPE_EQ] = ACTIONS(7470), - [anon_sym_AMP] = ACTIONS(7473), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_AMP_AMP] = ACTIONS(7476), - [anon_sym_PIPE] = ACTIONS(7473), - [anon_sym_CARET] = ACTIONS(7473), - [anon_sym_EQ_EQ] = ACTIONS(7479), - [anon_sym_BANG_EQ] = ACTIONS(7479), - [anon_sym_LT] = ACTIONS(7482), - [anon_sym_GT] = ACTIONS(7482), - [anon_sym_LT_EQ] = ACTIONS(7485), - [anon_sym_GT_EQ] = ACTIONS(7485), - [anon_sym_LT_LT] = ACTIONS(7488), - [anon_sym_GT_GT] = ACTIONS(7488), - [anon_sym_PLUS] = ACTIONS(7461), - [anon_sym_DASH] = ACTIONS(7461), - [anon_sym_SLASH] = ACTIONS(7461), - [anon_sym_PERCENT] = ACTIONS(7461), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DOT] = ACTIONS(4503), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_comment] = ACTIONS(121), - }, - [1432] = { - [sym__expression] = STATE(1431), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(7491), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(7494), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(7494), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(7497), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(7499), - [anon_sym_DASH] = ACTIONS(7499), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(7502), - [anon_sym_PLUS_PLUS] = ACTIONS(7502), - [anon_sym_sizeof] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1433] = { - [sym__expression] = STATE(1451), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2335), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1434] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1435] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(7505), - [anon_sym_LBRACK] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(7508), - [anon_sym_QMARK] = ACTIONS(7511), - [anon_sym_STAR_EQ] = ACTIONS(7514), - [anon_sym_SLASH_EQ] = ACTIONS(7514), - [anon_sym_PERCENT_EQ] = ACTIONS(7514), - [anon_sym_PLUS_EQ] = ACTIONS(7514), - [anon_sym_DASH_EQ] = ACTIONS(7514), - [anon_sym_LT_LT_EQ] = ACTIONS(7514), - [anon_sym_GT_GT_EQ] = ACTIONS(7514), - [anon_sym_AMP_EQ] = ACTIONS(7514), - [anon_sym_CARET_EQ] = ACTIONS(7514), - [anon_sym_PIPE_EQ] = ACTIONS(7514), - [anon_sym_AMP] = ACTIONS(7517), - [anon_sym_PIPE_PIPE] = ACTIONS(7520), - [anon_sym_AMP_AMP] = ACTIONS(7520), - [anon_sym_PIPE] = ACTIONS(7517), - [anon_sym_CARET] = ACTIONS(7517), - [anon_sym_EQ_EQ] = ACTIONS(7523), - [anon_sym_BANG_EQ] = ACTIONS(7523), - [anon_sym_LT] = ACTIONS(7526), - [anon_sym_GT] = ACTIONS(7526), - [anon_sym_LT_EQ] = ACTIONS(7529), - [anon_sym_GT_EQ] = ACTIONS(7529), - [anon_sym_LT_LT] = ACTIONS(7532), - [anon_sym_GT_GT] = ACTIONS(7532), - [anon_sym_PLUS] = ACTIONS(7505), - [anon_sym_DASH] = ACTIONS(7505), - [anon_sym_SLASH] = ACTIONS(7505), - [anon_sym_PERCENT] = ACTIONS(7505), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_DOT] = ACTIONS(4503), - [anon_sym_DASH_GT] = ACTIONS(4503), - [sym_comment] = ACTIONS(121), - }, - [1436] = { - [sym__expression] = STATE(1435), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_initializer_list] = STATE(380), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(7538), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(7538), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(7541), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(7543), - [anon_sym_DASH] = ACTIONS(7543), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_DASH_DASH] = ACTIONS(7546), - [anon_sym_PLUS_PLUS] = ACTIONS(7546), - [anon_sym_sizeof] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1437] = { - [sym__expression] = STATE(1452), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_sizeof] = ACTIONS(2811), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1438] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(7549), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), - [sym_comment] = ACTIONS(121), - }, - [1439] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1440] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(7552), - [sym_comment] = ACTIONS(121), - }, - [1441] = { - [ts_builtin_sym_end] = ACTIONS(7554), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(7557), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(7557), - [anon_sym_LPAREN] = ACTIONS(7554), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(7557), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(7557), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(7557), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(7557), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(7557), - [sym_preproc_directive] = ACTIONS(7560), - [anon_sym_SEMI] = ACTIONS(7554), - [anon_sym_extern] = ACTIONS(7557), - [anon_sym_LBRACE] = ACTIONS(7554), - [anon_sym_RBRACE] = ACTIONS(7554), - [anon_sym_STAR] = ACTIONS(7554), - [anon_sym_typedef] = ACTIONS(7557), - [anon_sym_static] = ACTIONS(7557), - [anon_sym_auto] = ACTIONS(7557), - [anon_sym_register] = ACTIONS(7557), - [anon_sym_const] = ACTIONS(7557), - [anon_sym_restrict] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [sym_function_specifier] = ACTIONS(7557), - [anon_sym_unsigned] = ACTIONS(7557), - [anon_sym_long] = ACTIONS(7557), - [anon_sym_short] = ACTIONS(7557), - [anon_sym_enum] = ACTIONS(7557), - [anon_sym_struct] = ACTIONS(7557), - [anon_sym_union] = ACTIONS(7557), - [anon_sym_if] = ACTIONS(7557), - [anon_sym_else] = ACTIONS(7557), - [anon_sym_switch] = ACTIONS(7557), - [anon_sym_case] = ACTIONS(7557), - [anon_sym_default] = ACTIONS(7557), - [anon_sym_while] = ACTIONS(7557), - [anon_sym_do] = ACTIONS(7557), - [anon_sym_for] = ACTIONS(7557), - [anon_sym_return] = ACTIONS(7557), - [anon_sym_break] = ACTIONS(7557), - [anon_sym_continue] = ACTIONS(7557), - [anon_sym_goto] = ACTIONS(7557), - [anon_sym_AMP] = ACTIONS(7554), - [anon_sym_BANG] = ACTIONS(7554), - [anon_sym_TILDE] = ACTIONS(7554), - [anon_sym_PLUS] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7557), - [anon_sym_DASH_DASH] = ACTIONS(7554), - [anon_sym_PLUS_PLUS] = ACTIONS(7554), - [anon_sym_sizeof] = ACTIONS(7557), - [sym_number_literal] = ACTIONS(7557), - [sym_char_literal] = ACTIONS(7557), - [sym_string_literal] = ACTIONS(7554), - [sym_identifier] = ACTIONS(7560), - [sym_comment] = ACTIONS(121), - }, - [1442] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1454), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(7552), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1443] = { - [sym_compound_statement] = STATE(1455), - [sym_labeled_statement] = STATE(1455), - [sym_expression_statement] = STATE(1455), - [sym_if_statement] = STATE(1455), - [sym_switch_statement] = STATE(1455), - [sym_case_statement] = STATE(1455), - [sym_while_statement] = STATE(1455), - [sym_do_statement] = STATE(1455), - [sym_for_statement] = STATE(1455), - [sym_return_statement] = STATE(1455), - [sym_break_statement] = STATE(1455), - [sym_continue_statement] = STATE(1455), - [sym_goto_statement] = STATE(1455), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1444] = { - [sym_compound_statement] = STATE(1456), - [sym_labeled_statement] = STATE(1456), - [sym_expression_statement] = STATE(1456), - [sym_if_statement] = STATE(1456), - [sym_switch_statement] = STATE(1456), - [sym_case_statement] = STATE(1456), - [sym_while_statement] = STATE(1456), - [sym_do_statement] = STATE(1456), - [sym_for_statement] = STATE(1456), - [sym_return_statement] = STATE(1456), - [sym_break_statement] = STATE(1456), - [sym_continue_statement] = STATE(1456), - [sym_goto_statement] = STATE(1456), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1445] = { - [sym_compound_statement] = STATE(608), - [sym_labeled_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [sym_if_statement] = STATE(608), - [sym_switch_statement] = STATE(608), - [sym_case_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), - [sym_comment] = ACTIONS(121), - }, - [1446] = { - [sym_compound_statement] = STATE(611), - [sym_labeled_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [sym_if_statement] = STATE(611), - [sym_switch_statement] = STATE(611), - [sym_case_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), - [sym_comment] = ACTIONS(121), - }, - [1447] = { - [sym__expression] = STATE(1458), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1448] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1449] = { - [sym__expression] = STATE(1460), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(347), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1450] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(7567), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_EQ] = ACTIONS(7570), - [anon_sym_QMARK] = ACTIONS(7573), - [anon_sym_STAR_EQ] = ACTIONS(7576), - [anon_sym_SLASH_EQ] = ACTIONS(7576), - [anon_sym_PERCENT_EQ] = ACTIONS(7576), - [anon_sym_PLUS_EQ] = ACTIONS(7576), - [anon_sym_DASH_EQ] = ACTIONS(7576), - [anon_sym_LT_LT_EQ] = ACTIONS(7576), - [anon_sym_GT_GT_EQ] = ACTIONS(7576), - [anon_sym_AMP_EQ] = ACTIONS(7576), - [anon_sym_CARET_EQ] = ACTIONS(7576), - [anon_sym_PIPE_EQ] = ACTIONS(7576), - [anon_sym_AMP] = ACTIONS(7579), - [anon_sym_PIPE_PIPE] = ACTIONS(7582), - [anon_sym_AMP_AMP] = ACTIONS(7582), - [anon_sym_PIPE] = ACTIONS(7579), - [anon_sym_CARET] = ACTIONS(7579), - [anon_sym_EQ_EQ] = ACTIONS(7585), - [anon_sym_BANG_EQ] = ACTIONS(7585), - [anon_sym_LT] = ACTIONS(7588), - [anon_sym_GT] = ACTIONS(7588), - [anon_sym_LT_EQ] = ACTIONS(7591), - [anon_sym_GT_EQ] = ACTIONS(7591), - [anon_sym_LT_LT] = ACTIONS(7594), - [anon_sym_GT_GT] = ACTIONS(7594), - [anon_sym_PLUS] = ACTIONS(7567), - [anon_sym_DASH] = ACTIONS(7567), - [anon_sym_SLASH] = ACTIONS(7567), - [anon_sym_PERCENT] = ACTIONS(7567), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4828), - [anon_sym_DASH_GT] = ACTIONS(4828), - [sym_comment] = ACTIONS(121), - }, - [1451] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_EQ] = ACTIONS(7600), - [anon_sym_QMARK] = ACTIONS(7603), - [anon_sym_STAR_EQ] = ACTIONS(7606), - [anon_sym_SLASH_EQ] = ACTIONS(7606), - [anon_sym_PERCENT_EQ] = ACTIONS(7606), - [anon_sym_PLUS_EQ] = ACTIONS(7606), - [anon_sym_DASH_EQ] = ACTIONS(7606), - [anon_sym_LT_LT_EQ] = ACTIONS(7606), - [anon_sym_GT_GT_EQ] = ACTIONS(7606), - [anon_sym_AMP_EQ] = ACTIONS(7606), - [anon_sym_CARET_EQ] = ACTIONS(7606), - [anon_sym_PIPE_EQ] = ACTIONS(7606), - [anon_sym_AMP] = ACTIONS(7609), - [anon_sym_PIPE_PIPE] = ACTIONS(7612), - [anon_sym_AMP_AMP] = ACTIONS(7612), - [anon_sym_PIPE] = ACTIONS(7609), - [anon_sym_CARET] = ACTIONS(7609), - [anon_sym_EQ_EQ] = ACTIONS(7615), - [anon_sym_BANG_EQ] = ACTIONS(7615), - [anon_sym_LT] = ACTIONS(7618), - [anon_sym_GT] = ACTIONS(7618), - [anon_sym_LT_EQ] = ACTIONS(7621), - [anon_sym_GT_EQ] = ACTIONS(7621), - [anon_sym_LT_LT] = ACTIONS(7624), - [anon_sym_GT_GT] = ACTIONS(7624), - [anon_sym_PLUS] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7597), - [anon_sym_SLASH] = ACTIONS(7597), - [anon_sym_PERCENT] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4828), - [anon_sym_DASH_GT] = ACTIONS(4828), - [sym_comment] = ACTIONS(121), - }, - [1452] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(4792), - [anon_sym_EQ] = ACTIONS(7630), - [anon_sym_QMARK] = ACTIONS(7633), - [anon_sym_STAR_EQ] = ACTIONS(7636), - [anon_sym_SLASH_EQ] = ACTIONS(7636), - [anon_sym_PERCENT_EQ] = ACTIONS(7636), - [anon_sym_PLUS_EQ] = ACTIONS(7636), - [anon_sym_DASH_EQ] = ACTIONS(7636), - [anon_sym_LT_LT_EQ] = ACTIONS(7636), - [anon_sym_GT_GT_EQ] = ACTIONS(7636), - [anon_sym_AMP_EQ] = ACTIONS(7636), - [anon_sym_CARET_EQ] = ACTIONS(7636), - [anon_sym_PIPE_EQ] = ACTIONS(7636), - [anon_sym_AMP] = ACTIONS(7639), - [anon_sym_PIPE_PIPE] = ACTIONS(7642), - [anon_sym_AMP_AMP] = ACTIONS(7642), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_CARET] = ACTIONS(7639), - [anon_sym_EQ_EQ] = ACTIONS(7645), - [anon_sym_BANG_EQ] = ACTIONS(7645), - [anon_sym_LT] = ACTIONS(7648), - [anon_sym_GT] = ACTIONS(7648), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7654), - [anon_sym_GT_GT] = ACTIONS(7654), - [anon_sym_PLUS] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7627), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4825), - [anon_sym_DOT] = ACTIONS(4828), - [anon_sym_DASH_GT] = ACTIONS(4828), - [sym_comment] = ACTIONS(121), - }, - [1453] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1454] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(7657), - [sym_comment] = ACTIONS(121), - }, - [1455] = { - [ts_builtin_sym_end] = ACTIONS(7659), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(7662), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(7662), - [anon_sym_LPAREN] = ACTIONS(7659), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(7662), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(7662), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(7662), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(7662), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(7662), - [sym_preproc_directive] = ACTIONS(7665), - [anon_sym_SEMI] = ACTIONS(7659), - [anon_sym_extern] = ACTIONS(7662), - [anon_sym_LBRACE] = ACTIONS(7659), - [anon_sym_RBRACE] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_typedef] = ACTIONS(7662), - [anon_sym_static] = ACTIONS(7662), - [anon_sym_auto] = ACTIONS(7662), - [anon_sym_register] = ACTIONS(7662), - [anon_sym_const] = ACTIONS(7662), - [anon_sym_restrict] = ACTIONS(7662), - [anon_sym_volatile] = ACTIONS(7662), - [sym_function_specifier] = ACTIONS(7662), - [anon_sym_unsigned] = ACTIONS(7662), - [anon_sym_long] = ACTIONS(7662), - [anon_sym_short] = ACTIONS(7662), - [anon_sym_enum] = ACTIONS(7662), - [anon_sym_struct] = ACTIONS(7662), - [anon_sym_union] = ACTIONS(7662), - [anon_sym_if] = ACTIONS(7662), - [anon_sym_else] = ACTIONS(7662), - [anon_sym_switch] = ACTIONS(7662), - [anon_sym_case] = ACTIONS(7662), - [anon_sym_default] = ACTIONS(7662), - [anon_sym_while] = ACTIONS(7662), - [anon_sym_do] = ACTIONS(7662), - [anon_sym_for] = ACTIONS(7662), - [anon_sym_return] = ACTIONS(7662), - [anon_sym_break] = ACTIONS(7662), - [anon_sym_continue] = ACTIONS(7662), - [anon_sym_goto] = ACTIONS(7662), - [anon_sym_AMP] = ACTIONS(7659), - [anon_sym_BANG] = ACTIONS(7659), - [anon_sym_TILDE] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7662), - [anon_sym_DASH] = ACTIONS(7662), - [anon_sym_DASH_DASH] = ACTIONS(7659), - [anon_sym_PLUS_PLUS] = ACTIONS(7659), - [anon_sym_sizeof] = ACTIONS(7662), - [sym_number_literal] = ACTIONS(7662), - [sym_char_literal] = ACTIONS(7662), - [sym_string_literal] = ACTIONS(7659), - [sym_identifier] = ACTIONS(7665), - [sym_comment] = ACTIONS(121), - }, - [1456] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARinclude_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARdefine_SLASH] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARendif_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifdef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARifndef_SLASH] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_BSLASHt_RBRACK_STARelse_SLASH] = ACTIONS(1754), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [sym_function_specifier] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(7668), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [sym_string_literal] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1756), - [sym_comment] = ACTIONS(121), - }, - [1457] = { - [sym_compound_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), - [sym_comment] = ACTIONS(121), - }, - [1458] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1464), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(7670), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1459] = { - [sym__expression] = STATE(1465), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(7670), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1460] = { - [sym_argument_list] = STATE(165), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(7672), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_LT_LT_EQ] = ACTIONS(758), - [anon_sym_GT_GT_EQ] = ACTIONS(758), - [anon_sym_AMP_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_PIPE_EQ] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_LT_EQ] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(776), - [anon_sym_GT_GT] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1461] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3017), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3031), - [sym_comment] = ACTIONS(121), - }, - [1462] = { - [sym_compound_statement] = STATE(805), - [sym_labeled_statement] = STATE(805), - [sym_expression_statement] = STATE(805), - [sym_if_statement] = STATE(805), - [sym_switch_statement] = STATE(805), - [sym_case_statement] = STATE(805), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(805), - [sym_for_statement] = STATE(805), - [sym_return_statement] = STATE(805), - [sym_break_statement] = STATE(805), - [sym_continue_statement] = STATE(805), - [sym_goto_statement] = STATE(805), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), - [sym_comment] = ACTIONS(121), - }, - [1463] = { - [sym_compound_statement] = STATE(819), - [sym_labeled_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(819), - [sym_switch_statement] = STATE(819), - [sym_case_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), - [sym_comment] = ACTIONS(121), - }, - [1464] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(7674), - [sym_comment] = ACTIONS(121), - }, - [1465] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1468), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(7674), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1466] = { - [sym__expression] = STATE(1469), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(7674), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(217), - [anon_sym_sizeof] = ACTIONS(219), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(121), - }, - [1467] = { - [sym_compound_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), - [sym_comment] = ACTIONS(121), - }, - [1468] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(7676), - [sym_comment] = ACTIONS(121), - }, - [1469] = { - [sym_argument_list] = STATE(165), - [aux_sym_for_statement_repeat1] = STATE(1471), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(7676), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(473), - [sym_comment] = ACTIONS(121), - }, - [1470] = { - [sym_compound_statement] = STATE(927), - [sym_labeled_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_switch_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_break_statement] = STATE(927), - [sym_continue_statement] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), - [sym_comment] = ACTIONS(121), - }, - [1471] = { - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(7678), - [sym_comment] = ACTIONS(121), - }, - [1472] = { - [sym_compound_statement] = STATE(964), - [sym_labeled_statement] = STATE(964), - [sym_expression_statement] = STATE(964), - [sym_if_statement] = STATE(964), - [sym_switch_statement] = STATE(964), - [sym_case_statement] = STATE(964), - [sym_while_statement] = STATE(964), - [sym_do_statement] = STATE(964), - [sym_for_statement] = STATE(964), - [sym_return_statement] = STATE(964), - [sym_break_statement] = STATE(964), - [sym_continue_statement] = STATE(964), - [sym_goto_statement] = STATE(964), - [sym__expression] = STATE(47), - [sym_comma_expression] = STATE(48), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(35), - [sym_bitwise_expression] = STATE(35), - [sym_equality_expression] = STATE(35), - [sym_relational_expression] = STATE(35), - [sym_shift_expression] = STATE(35), - [sym_math_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_field_expression] = STATE(35), - [sym_compound_literal_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(181), - [anon_sym_if] = ACTIONS(4170), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4174), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_do] = ACTIONS(169), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(173), - [anon_sym_break] = ACTIONS(175), - [anon_sym_continue] = ACTIONS(177), - [anon_sym_goto] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6613), + [sym_compound_statement] = STATE(896), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(166), + [sym_comma_expression] = STATE(167), + [sym_conditional_expression] = STATE(159), + [sym_assignment_expression] = STATE(159), + [sym_pointer_expression] = STATE(159), + [sym_logical_expression] = STATE(159), + [sym_bitwise_expression] = STATE(159), + [sym_equality_expression] = STATE(159), + [sym_relational_expression] = STATE(159), + [sym_shift_expression] = STATE(159), + [sym_math_expression] = STATE(159), + [sym_cast_expression] = STATE(159), + [sym_sizeof_expression] = STATE(159), + [sym_subscript_expression] = STATE(159), + [sym_call_expression] = STATE(159), + [sym_field_expression] = STATE(159), + [sym_compound_literal_expression] = STATE(159), + [sym_parenthesized_expression] = STATE(159), + [sym_concatenated_string] = STATE(159), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4206), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(535), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_sizeof] = ACTIONS(555), + [sym_number_literal] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), + [sym_string_literal] = ACTIONS(559), + [sym_identifier] = ACTIONS(6618), [sym_comment] = ACTIONS(121), }, }; @@ -71299,2590 +67126,2570 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { static TSParseActionEntry ts_parse_actions[] = { [0] = {.count = 0, .reusable = false, .depends_on_lookahead = false}, [1] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(0), - [3] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(2), - [5] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(3), - [7] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1035), - [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1036), - [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1037), - [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1038), - [15] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(5), - [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1039), - [19] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(6), - [21] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(206), - [23] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(7), - [25] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1040), - [27] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1041), - [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1042), - [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1043), - [33] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1044), - [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1045), - [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1046), - [39] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1047), - [41] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(12), - [43] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(13), - [45] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1048), - [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1049), - [49] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(16), - [51] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(17), - [53] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(18), - [55] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1050), - [57] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1051), - [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1052), - [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1053), - [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1054), - [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1055), - [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1056), - [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(24), - [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1057), - [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(26), - [75] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(27), - [77] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(28), - [79] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(29), - [81] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1058), - [83] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1059), - [85] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1060), - [87] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1061), - [89] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1062), - [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1063), - [93] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1064), - [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1065), - [97] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1066), - [99] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1066), - [101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1067), - [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1068), - [105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1069), - [107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1070), - [109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1071), - [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1072), - [113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(164), - [115] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(35), - [117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1073), - [119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(1074), + [3] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(956), + [5] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(957), + [7] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(958), + [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(959), + [11] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(2), + [13] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(3), + [15] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(960), + [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(961), + [19] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(962), + [21] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(963), + [23] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(6), + [25] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(964), + [27] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(965), + [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(966), + [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(967), + [33] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(968), + [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(969), + [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(970), + [39] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(971), + [41] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(8), + [43] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(9), + [45] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(972), + [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(973), + [49] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(12), + [51] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(13), + [53] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(14), + [55] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(974), + [57] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(975), + [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(976), + [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(977), + [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(978), + [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(979), + [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(980), + [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(149), + [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(981), + [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(151), + [75] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(152), + [77] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(153), + [79] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(154), + [81] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(982), + [83] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(983), + [85] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(984), + [87] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(985), + [89] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(986), + [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(987), + [93] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(988), + [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(989), + [97] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(990), + [99] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(990), + [101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(991), + [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(992), + [105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(993), + [107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(994), + [109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(995), + [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(996), + [113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(298), + [115] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(159), + [117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(997), + [119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(998), [121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), [123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 0), [125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2), [127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3), - [129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4), + [129] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4), [131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(5), - [133] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(6), - [135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(7), - [137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(8), + [133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(6), + [135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(7), + [137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(8), [139] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(9), - [141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(10), - [143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(11), + [141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(10), + [143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(11), [145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), [147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(13), [149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(14), - [151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15), - [153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(16), - [155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(17), - [157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(18), - [159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(19), - [161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(20), - [163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(21), - [165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(22), - [167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(23), - [169] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(24), - [171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(25), - [173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(26), - [175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(27), - [177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(28), - [179] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(29), - [181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(30), - [183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(31), - [185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(32), - [187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(33), - [189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), - [191] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(34), - [193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(35), - [195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(36), - [197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(37), - [199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(52), - [201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(52), - [203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(53), - [205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(54), - [207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(55), - [209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(56), - [211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), - [213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(58), - [215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(59), - [217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), - [219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), - [221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), - [223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(70), - [225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), - [227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(71), - [229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(72), - [231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), - [233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), - [235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), - [237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), - [239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(73), - [241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), - [243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74), - [245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(75), - [247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(76), - [249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(77), - [251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(78), - [253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(79), - [255] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(80), - [257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), - [259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(83), - [261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), - [263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), - [265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_qualifier, 1), - [267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), - [269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), - [277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), - [279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), - [281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), - [283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), - [285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(89), - [287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(90), - [289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(92), - [291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(94), - [293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), - [295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), - [297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), - [299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(98), - [301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), - [303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), - [305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(100), - [307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), - [309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(102), - [311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), - [313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), - [315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(106), - [317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(107), - [319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(108), - [321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(109), - [323] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(110), - [325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(111), - [327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), - [329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(113), - [331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), - [333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), - [335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), - [337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(118), - [339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), - [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), - [343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), - [345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), - [347] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), - [349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(124), - [351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125), - [353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(126), - [355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), - [357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), - [359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), - [361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(132), - [363] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(134), - [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [370] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [373] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), - [375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), - [377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(135), - [387] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), - [389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), - [393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), - [395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), - [397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), - [399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), - [401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), - [403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__preproc_statement, 1), - [405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__preproc_statement, 1), - [407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__preproc_statement, 1), - [409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(136), - [411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), - [413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(138), - [415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), - [417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(142), - [419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), - [421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), - [423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), - [425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 1), - [427] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), - [429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1), - [431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1), - [433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1), - [435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), - [437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(148), - [439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(149), - [441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(150), - [443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), - [445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), - [447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), - [449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), - [451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), - [453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), - [455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), - [457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), - [459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), - [461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), - [463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), - [465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), - [467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), - [469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(162), - [471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), - [473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), - [475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 1), - [477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), - [479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(168), - [481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 1, .fragile = true), - [483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sized_type_specifier, 1, .fragile = true), - [485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(170), - [487] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 1, .fragile = true), SHIFT(171), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), - [494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(172), - [498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(173), - [500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(174), - [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(177), - [504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(178), - [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), - [508] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_type_descriptor_repeat1, 1), - [516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_type_descriptor_repeat1, 1), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), - [520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 1), - [522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(188), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(189), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(190), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(191), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(192), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(191), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(193), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(195), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(196), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(197), - [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(198), - [550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(199), - [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(199), - [554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(200), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(201), - [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(202), - [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(171), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(205), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(206), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(207), - [568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(208), - [570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(209), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(210), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(211), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(212), - [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(213), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(216), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), - [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(219), - [590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(220), - [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(221), - [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [596] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), - [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(229), - [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(230), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), - [618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), - [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), - [624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(234), - [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), - [630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), - [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), - [634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), - [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), - [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), - [640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), - [642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), - [644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(240), - [646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(241), - [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(242), - [650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), - [652] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), - [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), - [656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), - [658] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), - [660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), - [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), - [664] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), - [666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), - [668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), - [670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), - [672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), - [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), - [676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(253), - [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), - [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(256), - [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(257), - [688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(260), - [690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(262), - [692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(264), - [694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(265), - [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), - [700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(268), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(270), - [708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(271), - [710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(272), - [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(274), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(275), - [720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(276), - [722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(277), - [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(284), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), - [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), - [734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), - [738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), - [746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), - [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(302), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(303), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(305), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(306), - [778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), - [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), - [784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), - [790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), - [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), - [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), - [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), - [808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 1), - [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenated_string, 2), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenated_string, 2), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(310), - [820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(312), - [822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(314), - [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), - [828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), - [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(315), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(320), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(321), - [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(324), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), - [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(327), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(328), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(329), - [856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2), - [862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 2), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 2), - [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), - [878] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), - [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), - [882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(350), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 2), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 2), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [902] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), SHIFT(134), - [905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), - [907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [909] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), - [915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), - [917] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), - [919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), - [921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [923] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), - [925] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), - [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [931] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), - [933] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(355), - [935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(356), - [937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), - [941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), - [943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), - [945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 2), - [947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), - [949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), - [951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 1), - [953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), - [955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), - [957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), - [959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_type_descriptor_repeat1, 2), - [961] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_type_descriptor_repeat1, 2), - [963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), - [965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 3), - [967] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), - [969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), - [971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(382), - [973] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), - [975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(384), - [977] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(385), - [979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(386), - [981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(387), - [983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(388), - [985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), - [987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), - [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), - [991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(396), - [997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397), - [999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(397), - [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), - [1005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), - [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), - [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), - [1013] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), SHIFT(134), - [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), - [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_linkage_specification, 3), - [1021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), - [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), - [1025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(406), - [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408), - [1029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(410), - [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [1035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), - [1039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), - [1041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 2), - [1043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), - [1045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1, .rename_sequence_id = 1), - [1047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), - [1049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), - [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 3), - [1053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 3), - [1055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 3), - [1057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [1059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(416), - [1061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), - [1063] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 1), - [1065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), - [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 2), - [1069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration_list, 2), - [1071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 2), - [1073] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), SHIFT(134), - [1077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), - [1079] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 8), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 9), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 10), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), - [1100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), - [1108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [1114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(436), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(442), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(443), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(444), - [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [1150] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(134), - [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), - [1160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), - [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), - [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), - [1168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(466), - [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), - [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(474), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), - [1184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), - [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), - [1190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), - [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), - [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), - [1204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), - [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), - [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), - [1210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [1216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), - [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(496), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), - [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), - [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), - [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), - [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(508), - [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), - [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(510), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(513), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(514), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(516), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(517), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(518), - [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), - [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), - [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), - [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), - [1276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), - [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), - [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), - [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), - [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), - [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), - [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), - [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), - [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), - [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), - [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), - [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), - [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 3), - [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 3), - [1316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 3), - [1318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(524), - [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), - [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [1324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), - [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), - [1330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [1332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(528), - [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), - [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), - [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 2), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), - [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), - [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), - [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(541), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541), - [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(542), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), - [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), - [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), - [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), - [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), - [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 3), - [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), - [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), - [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), - [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), - [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(559), - [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), - [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), - [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), - [1402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), - [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), - [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), - [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), - [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), - [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), - [1420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), - [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), - [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), - [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 3), - [1438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), - [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), - [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), - [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), - [1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), - [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 2), - [1454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), - [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_field_declarator, 2), - [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), - [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 3), - [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration_list, 3), - [1468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 3), - [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [1474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(589), - [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(590), - [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(591), - [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(594), - [1490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(595), - [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), - [1498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), - [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), - [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), - [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), - [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), - [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), - [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), - [1516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), - [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), - [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), - [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(30), - [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), - [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(31), - [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), - [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), - [1532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), - [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), - [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), - [1542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), - [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 3), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), - [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), - [1554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(631), - [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), - [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), - [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), - [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), - [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), - [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), - [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), - [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript_expression, 4), - [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript_expression, 4), - [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), - [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 5), - [1580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), - [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(650), - [1586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), - [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), - [1596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), - [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(57), - [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), - [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), - [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), - [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), - [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(660), - [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), - [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(661), - [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), - [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), - [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(664), - [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), - [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), - [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), - [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), - [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), - [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), - [1640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), - [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), - [1644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(672), - [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), - [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), - [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), - [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [1656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(680), - [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), - [1662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), - [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), - [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 5), - [1676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), - [1682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), - [1688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(691), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(692), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(693), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), - [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(695), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(696), - [1702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(697), - [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), - [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3, .rename_sequence_id = 1), - [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 4), - [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 4), - [1714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 4), - [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), - [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 3), - [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 3), - [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 3), - [1726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 3), - [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), - [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 3), - [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), - [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), - [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), - [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), - [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), - [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), - [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), - [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), - [1756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), - [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(719), - [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), - [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), - [1766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(97), - [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), - [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), - [1776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(722), - [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(723), - [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), - [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(725), - [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(726), - [1788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(727), - [1790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(728), - [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), - [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), - [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), - [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736), - [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), - [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(118), - [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(119), - [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 3), - [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [1810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), - [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 4), - [1814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), - [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), - [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), - [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), - [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), - [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), - [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), - [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(745), - [1837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), - [1839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), - [1841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2, .rename_sequence_id = 14), - [1849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), - [1851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), - [1853] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), - [1855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [1857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), - [1859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(766), - [1861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), - [1863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), - [1865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(771), - [1869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(772), - [1871] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(773), - [1873] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), - [1875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(775), - [1877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(776), - [1879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(777), - [1881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), - [1885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), - [1887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), - [1889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), - [1891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), - [1893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), - [1895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(790), - [1899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 5), - [1905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 5), - [1907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 5), - [1909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 3), - [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 4), - [1913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 4), - [1915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 4), - [1917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), - [1919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 4), - [1921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_repeat1, 3), - [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(253), - [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(254), - [1929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), - [1931] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(801), - [1933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), - [1939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), - [1943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), - [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), - [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), - [1953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), - [1957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [1963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), - [1967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 3), - [1969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(324), - [1971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(326), - [1973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 3), - [1975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), - [1977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), - [1979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), - [1981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), - [1983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), - [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), - [1989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), - [1991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), - [1993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(827), - [1995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(828), - [1997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(829), - [1999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(830), - [2001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(831), - [2003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(832), - [2005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(833), - [2007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), - [2009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), - [2011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), - [2013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), - [2015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), - [2017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [2019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [2021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [2023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(846), - [2025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [2027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [2029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [2031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(854), - [2033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [2035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [2037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 5), - [2039] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 5), - [2041] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 5), - [2043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [2045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 5), - [2047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [2049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), - [2051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), - [2053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [2055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [2057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [2061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [2065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(871), - [2067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), - [2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [2073] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), - [2075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [2077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [2079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), - [2081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(539), - [2083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [2085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), - [2087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), - [2089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [2091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), - [2093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [2095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(891), - [2097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [2099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [2101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [2103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(899), - [2105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [2107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [2109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [2111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [2113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [2115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [2117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [2119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), - [2121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 6), - [2123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 6), - [2125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 6), - [2127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [2129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [2131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [2133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), - [2135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [2137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [2139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), - [2141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [2143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [2145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), - [2147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [2149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), - [2151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), - [2153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), - [2155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(932), - [2157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), - [2159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [2161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [2163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), - [2165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(941), - [2167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), - [2169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), - [2171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [2173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [2175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [2177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [2179] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), - [2181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), - [2183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [2185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [2187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [2189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [2191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [2193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), - [2195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [2197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [2199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [2201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), - [2207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), - [2211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [2213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [2215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(979), - [2217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), - [2219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), - [2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [2223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [2225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [2227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), - [2229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [2231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), - [2233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [2235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [2237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [2239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(998), - [2243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), - [2247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), - [2251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), - [2253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1011), - [2255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), - [2259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [2261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), - [2263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [2267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [2275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [2277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [2279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [2281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [2283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [2285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), - [2287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [2291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [2293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [2295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), - [2297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1112), - [2299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1113), - [2303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1114), - [2305] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(1119), - [2311] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(1120), - [2317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), - [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), - [2321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), - [2323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), - [2325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [2327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [2331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1128), - [2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), - [2335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), - [2337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(543), - [2339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1130), - [2341] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), - [2345] = {.count = 14, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__field_declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1137), - [2360] = {.count = 12, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__field_declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), - [2373] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__field_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(8), - [2387] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), - [2390] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1138), - [2397] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), - [2404] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1139), - [2413] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), - [2420] = {.count = 9, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), - [2430] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__field_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), - [2441] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1051), - [2444] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1053), - [2447] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1054), - [2450] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1055), - [2453] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1140), - [2456] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(24), - [2459] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1057), - [2462] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(26), - [2465] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(27), - [2468] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(28), - [2471] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(29), - [2474] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), - [2480] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1062), - [2484] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1064), - [2488] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1141), - [2497] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1071), - [2501] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(35), - [2505] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(36), - [2509] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1142), - [2513] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [2520] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [2527] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [2534] = {.count = 10, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), - [2545] = {.count = 10, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), - [2556] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(1145), - [2574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), - [2576] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), - [2587] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(1147), - [2605] = {.count = 16, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [2622] = {.count = 16, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [2639] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(1109), - [2657] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [2664] = {.count = 9, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), - [2674] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(1109), - [2686] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(1110), - [2698] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(1111), - [2710] = {.count = 11, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(1112), - [2722] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(1112), - [2734] = {.count = 11, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(1113), - [2746] = {.count = 11, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(35), - [2758] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), SHIFT(36), - [2770] = {.count = 17, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(102), - [2788] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(73), - [2791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), - [2793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), - [2795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), - [2797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152), - [2799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1153), - [2801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), - [2803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [2805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), - [2807] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1157), - [2809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [2811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1158), - [2813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1159), - [2815] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2820] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2825] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), - [2839] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), - [2849] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2854] = {.count = 10, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), - [2865] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2873] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), - [2887] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2891] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), - [2894] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2898] = {.count = 10, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), - [2909] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), - [2920] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1163), - [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2925] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(184), - [2928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), - [2930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [2934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1141), - [2936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [2938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1071), - [2940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1165), - [2942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), - [2944] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), - [2956] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), - [2964] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), - [2968] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), - [2981] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), - [2987] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 3), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_field_declarator, 5), - [2992] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), - [2995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), - [2997] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [3000] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [3003] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [3006] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3009] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3012] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3015] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1051), - [3017] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1053), - [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1054), - [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1055), - [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1140), - [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), - [3027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1174), - [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [3031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1179), - [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), - [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), - [3041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1137), - [3044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1139), - [3047] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1062), - [3049] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1141), - [3052] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1141), - [3055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), - [3057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1200), - [3059] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT(136), - [3065] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3069] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3074] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(12), - [3077] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(219), - [3080] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT(220), - [3086] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3090] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(13), - [3093] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(14), - [3096] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(15), - [3099] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(16), - [3102] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(17), - [3105] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(18), - [3108] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3113] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT(132), - [3118] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(221), - [3121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2), - [3123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3), - [3125] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), SHIFT(1201), - [3136] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_enumerator, 1, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(525), - [3150] = {.count = 12, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(526), - [3163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5), - [3165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(216), - [3167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(6), - [3169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(206), - [3171] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), SHIFT(1202), - [3182] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(9), - [3189] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(1203), - [3192] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [3196] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), SHIFT(11), - [3205] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_designator, 2, .rename_sequence_id = 14), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [3216] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [3224] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_designator, 2, .rename_sequence_id = 14), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), SHIFT(412), - [3230] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(12), - [3237] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(13), - [3244] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(14), - [3251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), - [3253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), - [3255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), - [3257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18), - [3259] = {.count = 9, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), SHIFT(1204), - [3269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(207), - [3271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(208), - [3273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(209), - [3275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(210), - [3277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(211), - [3279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(24), - [3281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(212), - [3283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(26), - [3285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(27), - [3287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(28), - [3289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(29), - [3291] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [3294] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), SHIFT(30), - [3303] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(31), - [3310] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(32), - [3317] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), SHIFT(33), - [3326] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(34), - [3333] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_designator, 2, .rename_sequence_id = 14), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [3337] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(35), - [3344] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(36), - [3351] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 5), SHIFT(213), - [3358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3361] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3364] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), - [3369] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [3372] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [3375] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [3378] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [3383] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [3388] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(116), - [3394] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [3399] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(1207), - [3405] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(118), - [3411] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [3414] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(119), - [3420] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(120), - [3426] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(121), - [3432] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(121), - [3438] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(122), - [3444] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(35), - [3450] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(36), - [3456] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(102), - [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [3464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [3466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [3470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1213), - [3472] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(142), - [3475] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), REDUCE(sym_parameter_declaration, 2), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(315), - [3481] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), REDUCE(sym_parameter_declaration, 2), SHIFT(181), - [3485] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(316), - [3490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(10), - [3493] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(143), - [3496] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(317), - [3499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), SHIFT(142), - [3502] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), SHIFT(423), - [3507] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), SHIFT(577), - [3510] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), SHIFT(1217), - [3515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), SHIFT(424), - [3518] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), SHIFT(1218), - [3523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), SHIFT(142), + [151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), + [153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(24), + [155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(24), + [157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(25), + [159] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(26), + [161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), + [163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(27), + [165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(28), + [167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), + [169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(29), + [171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), + [173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), + [175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), + [177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_qualifier, 1), + [179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), + [181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(30), + [195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(31), + [197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), + [199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(34), + [201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36), + [203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(38), + [206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), + [208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), + [210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), + [212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(39), + [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(40), + [224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(41), + [226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(42), + [228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), + [230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 1), + [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), + [234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1), + [236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1), + [238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1), + [240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 1), + [242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(48), + [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 1, .fragile = true), + [246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sized_type_specifier, 1, .fragile = true), + [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(50), + [250] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 1, .fragile = true), SHIFT(51), + [253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [255] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), + [257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(52), + [261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(53), + [263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(54), + [265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), + [267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(57), + [269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), + [271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [273] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), + [275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(63), + [279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66), + [281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), + [283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(68), + [285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), + [287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), + [289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), + [291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), + [293] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), + [295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), + [297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(71), + [299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), + [301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), + [303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), + [305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), + [307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), + [309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), + [311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), + [313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), + [315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), + [317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), + [319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), + [321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), + [323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), + [325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), + [327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), + [329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), + [331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), + [333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85), + [335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), + [337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(87), + [339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), + [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(89), + [343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(90), + [345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), + [347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), + [349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 2), + [351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), + [353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [367] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), + [373] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), + [375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), + [377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(95), + [379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), + [383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), + [387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), + [389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(96), + [391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(98), + [393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(99), + [395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), + [397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 3), + [399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), + [401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), + [403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(101), + [405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), + [407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), + [411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), + [417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), + [419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), + [421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_linkage_specification, 3), + [423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), + [425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(107), + [427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), + [429] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 2), + [431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), + [433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1, .rename_sequence_id = 5), + [435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(108), + [437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(109), + [439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 2), + [441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 2), + [443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 2), + [445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 2), + [447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration_list, 2), + [449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 2), + [451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), + [453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), + [455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(113), + [457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), + [459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(115), + [461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), + [463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), + [465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), + [467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), + [469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), + [471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), + [473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), + [475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_type_descriptor_repeat1, 1), + [483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_type_descriptor_repeat1, 1), + [485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122), + [487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 1), + [489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123), + [491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(124), + [493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), + [495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(51), + [497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(131), + [499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), + [501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(132), + [503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(133), + [505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(135), + [507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), + [509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), + [511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), + [513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(138), + [515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), + [517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(140), + [519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(141), + [521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(142), + [523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), + [525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(144), + [527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(145), + [529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(146), + [531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(147), + [533] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(148), + [535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(149), + [537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(150), + [539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(151), + [541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), + [543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(153), + [545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), + [547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), + [549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), + [551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), + [553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), + [555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), + [557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(159), + [559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), + [561] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(161), + [563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), + [565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(170), + [567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171), + [569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(172), + [571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), + [573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(174), + [575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174), + [577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(175), + [579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(176), + [581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), + [583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(180), + [585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 2), + [593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), + [595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), + [597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 3), + [599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 3), + [601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 3), + [603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(185), + [605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), + [607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), + [609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), + [611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), + [615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(189), + [619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), + [621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), + [623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), + [625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), + [627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(190), + [629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), + [633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(191), + [637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), + [639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), + [641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), + [643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(192), + [645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), + [647] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 3), + [649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), + [651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), + [653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), + [655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(195), + [657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), + [659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(197), + [661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(197), + [663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(198), + [665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(200), + [667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(202), + [669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(203), + [671] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 2), + [673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), + [675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), + [677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(206), + [679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), + [681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), + [683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), + [685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(210), + [687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), + [689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(211), + [691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), + [693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(213), + [695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), + [697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), + [699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(216), + [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 8), + [703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 9), + [705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 10), + [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 3), + [709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration_list, 3), + [711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration_list, 3), + [713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [717] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), + [721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), + [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 2), + [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), + [727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), + [729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 1), + [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), + [733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), + [735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), + [737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_type_descriptor_repeat1, 2), + [739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_type_descriptor_repeat1, 2), + [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), + [743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), + [745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), + [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), + [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(230), + [751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), + [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), + [755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), + [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), + [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), + [761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), + [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(238), + [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), + [769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(239), + [771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(240), + [773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(244), + [775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(245), + [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), + [779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), + [781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), + [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(247), + [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), + [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(249), + [795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), + [797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), + [799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), + [801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(253), + [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(253), + [805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(254), + [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), + [809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), + [811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(258), + [813] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(259), + [815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(260), + [817] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(261), + [819] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(262), + [821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(263), + [823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(264), + [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), + [827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), + [829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), + [831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(270), + [833] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(271), + [835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), + [837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), + [839] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), + [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(277), + [843] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(38), + [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [849] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [852] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), + [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), + [861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), + [863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), + [865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 11), + [867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 11), + [869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 11), + [871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 12), + [873] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 12), + [875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 12), + [877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), + [879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), + [881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), + [883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(284), + [885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), + [887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(286), + [889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), + [891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [893] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(288), + [895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(291), + [901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(292), + [903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(294), + [907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [909] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(295), + [911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), + [913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), + [921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), + [923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), + [925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(309), + [927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(311), + [931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(310), + [933] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(312), + [935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), + [937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(314), + [939] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(315), + [941] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(316), + [943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), + [945] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), + [947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), + [949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(319), + [951] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(320), + [953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(321), + [955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322), + [957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), + [959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), + [961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), + [963] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), + [965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), + [967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), + [969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 5), + [971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), + [973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), + [975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(331), + [977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), + [979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), + [983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), + [985] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), + [987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), + [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), + [991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 5), + [993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), + [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), + [999] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), + [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), + [1005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), + [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3, .rename_sequence_id = 5), + [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), + [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(338), + [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(340), + [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(343), + [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(344), + [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), + [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(346), + [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), + [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(347), + [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(348), + [1039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 4), + [1041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 4), + [1043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 4), + [1045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [1047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [1049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(351), + [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), + [1053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), + [1055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), + [1057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(356), + [1059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(357), + [1061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), + [1063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), + [1065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), + [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), + [1069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [1071] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), + [1073] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), + [1075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), + [1077] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(365), + [1079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(365), + [1081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(366), + [1083] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), + [1085] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 3), + [1087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 3), + [1089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 3), + [1091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), + [1093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_field_declarator, 2), + [1095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(373), + [1097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), + [1099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), + [1101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), + [1103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), + [1105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [1107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 2), + [1109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 3), + [1111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [1113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 3), + [1115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [1117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), + [1119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [1121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(383), + [1123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), + [1125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [1127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), + [1129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), + [1131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(389), + [1133] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390), + [1135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [1137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), + [1139] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(392), + [1141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), + [1143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [1145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(395), + [1147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(396), + [1149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397), + [1151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), + [1153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [1155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), + [1157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(400), + [1159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [1161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(402), + [1163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(403), + [1165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(404), + [1167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(405), + [1169] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(406), + [1171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(407), + [1173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(408), + [1175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), + [1177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(410), + [1179] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(413), + [1181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), + [1183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), + [1185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), + [1187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [1189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), + [1191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), + [1193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(420), + [1195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [1197] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(421), + [1199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), + [1201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(427), + [1203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(428), + [1205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), + [1207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), + [1209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), + [1211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(431), + [1213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), + [1215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), + [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(435), + [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(437), + [1225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(438), + [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), + [1231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440), + [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), + [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), + [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), + [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), + [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), + [1249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453), + [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), + [1255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), + [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), + [1263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), + [1269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), + [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), + [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), + [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), + [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenated_string, 2), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenated_string, 2), + [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [1299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(459), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), + [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), + [1307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), + [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), + [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), + [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 2), + [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 2), + [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [1323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [1329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 13), + [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 13), + [1335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 13), + [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 14), + [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 14), + [1341] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 14), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), + [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), + [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(494), + [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), + [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), + [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(496), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), + [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), + [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 3), + [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [1373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), + [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), + [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 5), + [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 5), + [1381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 5), + [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 3), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 3), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 4), + [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 4), + [1393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 4), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 3), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), + [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), + [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 4), + [1415] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(38), + [1419] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), + [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), + [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), + [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 3), + [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 3), + [1432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 3), + [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else_in_compound_statement, 1), + [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(550), + [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), + [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), + [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), + [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(554), + [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), + [1448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(556), + [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), + [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), + [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), + [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), + [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [1470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), + [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(569), + [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), + [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), + [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(575), + [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(576), + [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), + [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), + [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(578), + [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), + [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(581), + [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(582), + [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), + [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(584), + [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(585), + [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(586), + [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), + [1516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), + [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(606), + [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), + [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), + [1536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), + [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), + [1542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), + [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), + [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), + [1554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), + [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), + [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), + [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), + [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), + [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), + [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), + [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), + [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), + [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), + [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), + [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), + [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), + [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), + [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), + [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), + [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), + [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), + [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), + [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), + [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), + [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), + [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2, .rename_sequence_id = 18), + [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), + [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), + [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), + [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), + [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), + [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), + [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), + [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 4), + [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), + [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 5), + [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 5), + [1636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 5), + [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_repeat1, 3), + [1640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), + [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), + [1644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 3), + [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), + [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), + [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), + [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), + [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), + [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), + [1662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), + [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), + [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), + [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), + [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), + [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else_in_compound_statement, 2), + [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645), + [1676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(646), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), + [1680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(650), + [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), + [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), + [1686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), + [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 4), + [1692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), + [1700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), + [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [1706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), + [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), + [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), + [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(656), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(657), + [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(658), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(659), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(660), + [1724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(661), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), + [1732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), + [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), + [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), + [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), + [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), + [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), + [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(143), + [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), + [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), + [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), + [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), + [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), + [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript_expression, 4), + [1768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript_expression, 4), + [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(170), + [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(172), + [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), + [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), + [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), + [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), + [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), + [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(194), + [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(195), + [1788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(207), + [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(208), + [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 5), + [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 6), + [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 6), + [1798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 6), + [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), + [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(235), + [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(236), + [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(701), + [1810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(705), + [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), + [1818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), + [1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), + [1826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), + [1828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), + [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [1834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), + [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), + [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), + [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), + [1854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), + [1864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(250), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(251), + [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), + [1874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(723), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(725), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(726), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(727), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(728), + [1888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(729), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), + [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(750), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), + [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(752), + [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(753), + [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(754), + [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), + [1930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(756), + [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(417), + [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(418), + [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), + [1942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(765), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), + [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(776), + [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), + [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), + [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), + [1968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [1974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 3), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(787), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(788), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(789), + [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(790), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(791), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(792), + [1994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(793), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(799), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(806), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [2032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [2036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(820), + [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), + [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), + [2046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), + [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(837), + [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), + [2070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(845), + [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), + [2096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [2102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(870), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(885), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), + [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), + [2136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), + [2168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(925), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(935), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1041), + [2232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1042), + [2234] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(1047), + [2240] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(1048), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1056), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(323), + [2268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1058), + [2270] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), + [2274] = {.count = 14, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__field_declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1065), + [2289] = {.count = 12, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__field_declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), + [2302] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__field_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(141), + [2316] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), + [2319] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1066), + [2326] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), + [2333] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1067), + [2342] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), + [2349] = {.count = 9, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), + [2359] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__field_declarator, 3), REDUCE(sym_parameter_list, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_parameter_list, 4), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), + [2370] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(975), + [2373] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(977), + [2376] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(978), + [2379] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(979), + [2382] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1068), + [2385] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(149), + [2388] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(981), + [2391] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(151), + [2394] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(152), + [2397] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(153), + [2400] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(154), + [2403] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), + [2409] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(986), + [2413] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(988), + [2417] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1069), + [2426] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(995), + [2430] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(159), + [2434] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(160), + [2438] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1070), + [2442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1073), + [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1074), + [2446] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), + [2453] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [2462] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_if_in_compound_statement, 3), REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [2477] = {.count = 14, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_if_in_compound_statement, 3), REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [2492] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_if_in_compound_statement, 3), REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [2507] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1075), + [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1076), + [2520] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), REDUCE(sym_preproc_else_in_compound_statement, 1), + [2523] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [2527] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1078), + [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), + [2541] = {.count = 10, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), + [2552] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), + [2563] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1080), + [2575] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), + [2591] = {.count = 10, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), + [2602] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), + [2618] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1037), + [2630] = {.count = 9, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), + [2640] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1038), + [2652] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1039), + [2664] = {.count = 11, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1040), + [2676] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1040), + [2688] = {.count = 11, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(1041), + [2700] = {.count = 11, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(159), + [2712] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), SHIFT(160), + [2724] = {.count = 16, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_field_declaration, 2), REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 2), REDUCE(sym_break_statement, 2), REDUCE(sym_continue_statement, 2), REDUCE(sym__empty_declaration, 2), REDUCE(sym_declaration, 3), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), REDUCE(sym_declaration, 4), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(180), + [2741] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(29), + [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), + [2748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), + [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), + [2752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1088), + [2758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1089), + [2762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1090), + [2764] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2769] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), + [2781] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), + [2791] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2796] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2801] = {.count = 10, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), + [2812] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2815] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2823] = {.count = 11, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), + [2835] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2839] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2842] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2846] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), + [2855] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), + [2864] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_enumerator_list, 3), REDUCE(sym_field_declaration_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), + [2875] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1093), + [2878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), + [2880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(124), + [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), + [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), + [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1069), + [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(995), + [2895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1095), + [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2899] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), + [2911] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), + [2919] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), + [2923] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), + [2936] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), + [2942] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 3), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_field_declarator, 5), + [2947] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), + [2950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2952] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2955] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2958] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2961] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2964] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2967] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(975), + [2972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(977), + [2974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(978), + [2976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(979), + [2978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1068), + [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(981), + [2982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1104), + [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1109), + [2988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1065), + [2999] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1067), + [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(986), + [3004] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1069), + [3007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1069), + [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), + [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1130), + [3014] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3019] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(8), + [3026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(63), + [3029] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3034] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3038] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(9), + [3041] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(10), + [3044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(11), + [3047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(12), + [3050] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(13), + [3053] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(14), + [3056] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT(277), + [3061] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(15), + [3064] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), SHIFT(1131), + [3075] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_enumerator, 1, .rename_sequence_id = 5), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(186), + [3089] = {.count = 12, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), REDUCE(aux_sym_preproc_params_repeat1, 3), SHIFT(187), + [3102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2), + [3104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3), + [3106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1075), + [3108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1076), + [3110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1132), + [3112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(963), + [3114] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), SHIFT(1133), + [3125] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(7), + [3132] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(1134), + [3135] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1, .rename_sequence_id = 5), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [3139] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), SHIFT(143), + [3148] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_designator, 2, .rename_sequence_id = 18), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [3159] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [3167] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_designator, 2, .rename_sequence_id = 18), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), SHIFT(108), + [3173] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(8), + [3180] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(9), + [3187] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(10), + [3194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(11), + [3196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(12), + [3198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), + [3200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(14), + [3202] = {.count = 9, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), SHIFT(1135), + [3212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), + [3214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405), + [3216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(406), + [3218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), + [3220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(408), + [3222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(149), + [3224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(409), + [3226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(151), + [3228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(152), + [3230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(153), + [3232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(154), + [3234] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [3237] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(155), + [3244] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(156), + [3251] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), SHIFT(157), + [3260] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(158), + [3267] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym_designator, 2, .rename_sequence_id = 18), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [3271] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(159), + [3278] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(160), + [3285] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_sized_type_specifier, 2, .rename_sequence_id = 6), REDUCE(sym_enum_specifier, 2, .rename_sequence_id = 2), REDUCE(sym_struct_specifier, 2, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 2, .rename_sequence_id = 4), SHIFT(410), + [3292] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [3298] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [3303] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [3308] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [3313] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [3316] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3319] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3322] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 11), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 13), + [3325] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 11), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 13), + [3328] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 11), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 13), + [3331] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 12), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 14), + [3334] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 12), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 14), + [3337] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .rename_sequence_id = 12), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2, .rename_sequence_id = 14), + [3340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), + [3342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), + [3344] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(sym_linkage_specification, 3), + [3348] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(sym_linkage_specification, 3), + [3352] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(sym_linkage_specification, 3), + [3356] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(206), + [3362] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [3370] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [3378] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(1139), + [3384] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [3389] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [3397] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(207), + [3403] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [3408] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [3411] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(208), + [3417] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(209), + [3423] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(210), + [3429] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(210), + [3435] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(211), + [3441] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(159), + [3447] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(160), + [3453] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_linkage_specification, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), SHIFT(180), + [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [3464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), + [3466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), + [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [3470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1145), + [3472] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(85), + [3475] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), REDUCE(sym_parameter_declaration, 2), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(86), + [3481] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), REDUCE(sym_parameter_declaration, 2), SHIFT(131), + [3485] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(87), + [3490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(88), + [3493] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(89), + [3496] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_declarator, 2, .fragile = true), SHIFT(90), + [3499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), SHIFT(85), + [3502] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), SHIFT(213), + [3507] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), SHIFT(351), + [3510] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), SHIFT(214), + [3515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), SHIFT(215), + [3518] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_field_declarator, 2, .fragile = true), REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), SHIFT(216), + [3523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), SHIFT(85), [3526] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), REDUCE(sym_parameter_declaration, 2), - [3529] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_descriptor, 2), REDUCE(sym_type_descriptor, 3), SHIFT(530), - [3535] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), SHIFT(364), - [3538] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(315), - [3542] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(316), - [3546] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_function_definition, 2), REDUCE(sym_function_definition, 3), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3562] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_function_definition, 2), REDUCE(sym_function_definition, 3), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3578] = {.count = 15, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_function_definition, 2), REDUCE(sym_function_definition, 3), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3594] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(1052), - [3608] = {.count = 16, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_function_definition, 2), REDUCE(sym_function_definition, 3), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(288), - [3625] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_type_descriptor_repeat1, 2), - [3630] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_type_descriptor_repeat1, 2), - [3635] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), SHIFT(182), - [3639] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), - [3642] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym_type_descriptor, 1), REDUCE(sym__declaration_specifiers, 2), REDUCE(sym_type_descriptor, 2), - [3647] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), SHIFT(183), - [3651] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), SHIFT(184), - [3655] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), - [3658] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), - [3661] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 3), - [3664] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 3), - [3667] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 3), - [3670] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [3675] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [3680] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [3685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [3688] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [3691] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [3694] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), REDUCE(aux_sym_enumerator_list_repeat1, 3), SHIFT(413), - [3698] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), REDUCE(aux_sym_enumerator_list_repeat1, 3), SHIFT(411), - [3702] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 1), REDUCE(sym_function_declarator, 2), REDUCE(sym_function_field_declarator, 2), REDUCE(sym_abstract_function_declarator, 2), - [3707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 2), REDUCE(sym_function_field_declarator, 2), - [3710] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(495), - [3714] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(496), - [3718] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3732] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3746] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3760] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(1052), - [3774] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(288), - [3789] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(147), - [3805] = {.count = 22, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3, .rename_sequence_id = 1), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), REDUCE(sym__initializer_list_contents, 5), SHIFT(1221), - [3828] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1222), - [3847] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_init_declarator, 3), REDUCE(sym_comma_expression, 3), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1223), - [3865] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_enumerator, 3, .rename_sequence_id = 1), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), REDUCE(sym__initializer_list_contents, 5), - [3884] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1069), - [3900] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(151), - [3916] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1224), - [3932] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1059), - [3948] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1225), - [3964] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1058), - [3980] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1059), - [3996] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1063), - [4012] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1061), - [4028] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1065), - [4044] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1066), - [4060] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1066), - [4076] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1067), - [4092] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1226), - [4108] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(163), - [4124] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(164), - [4140] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(189), - [4143] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(149), - [4146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [4148] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), - [4154] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), - [4157] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), - [4162] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [4165] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(1228), - [4168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), - [4170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1230), - [4172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1231), - [4174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1232), - [4176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1233), - [4178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1234), - [4180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1235), - [4182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1236), - [4184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), - [4187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), - [4190] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), SHIFT(168), - [4194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [4196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [4198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [4200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [4202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [4204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [4206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1244), - [4208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), - [4210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), - [4212] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [4215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), - [4217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), - [4219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), - [4221] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1104), - [4224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1246), - [4226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [4228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), - [4230] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(134), - [4236] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(525), - [4240] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(526), - [4246] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [4251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), - [4253] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), - [4256] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), - [4259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), SHIFT(182), - [4262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym_type_descriptor, 1), - [4265] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), SHIFT(183), - [4268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), SHIFT(184), - [4271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), - [4273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256), - [4275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), - [4277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1258), - [4279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1259), - [4281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [4283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [4285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1261), - [4287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), - [4289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), - [4291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1264), - [4293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), - [4295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1265), - [4297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), - [4299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1267), - [4301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 3), - [4303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), - [4305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), - [4307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1270), - [4309] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_list_repeat1, 3), - [4314] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), - [4319] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), - [4323] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), - [4328] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), - [4332] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), - [4336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1272), - [4338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), - [4340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), - [4342] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym_enumerator, 1, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), - [4350] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), - [4355] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [4359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [4362] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(412), - [4366] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), - [4369] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), - [4372] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), REDUCE(aux_sym_enumerator_list_repeat1, 3), - [4375] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 3), - [4378] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), SHIFT(1280), - [4383] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), - [4387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1281), - [4389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1282), - [4391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), - [4393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [4395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1284), - [4397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [4399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), - [4401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1287), - [4403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), - [4405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1288), - [4407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), - [4409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), - [4411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [4413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), - [4415] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(1204), - [4418] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [4427] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [4436] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [4445] = {.count = 9, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(1052), - [4455] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(147), - [4458] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(148), - [4461] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(149), - [4464] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1069), - [4467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(151), - [4470] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1059), - [4473] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1058), - [4476] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1059), - [4479] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1063), - [4482] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1061), - [4485] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1065), - [4488] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1066), - [4491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1066), - [4494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1067), - [4497] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1226), - [4500] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(163), - [4503] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(164), - [4506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), - [4508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [4510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), - [4512] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), - [4515] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), - [4518] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 1), REDUCE(sym_expression_statement, 1), - [4521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [4523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [4526] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [4529] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), - [4535] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), - [4539] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [4542] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), - [4547] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [4551] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), - [4557] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), - [4562] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), - [4567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1303), - [4569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), - [4571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), - [4573] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym_enumerator, 1, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [4577] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [4581] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(412), - [4584] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), SHIFT(230), - [4588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), - [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), - [4592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1313), - [4594] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), SHIFT(148), - [4597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1314), - [4599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1315), - [4601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1316), - [4603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), - [4605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1317), - [4607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), - [4609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), - [4611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1320), - [4613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), - [4615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1321), - [4617] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [4620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), - [4623] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(147), - [4627] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), - [4630] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1069), - [4634] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(151), - [4638] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1059), - [4642] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1058), - [4646] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1059), - [4650] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1063), - [4654] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1061), - [4658] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1065), - [4662] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1066), - [4666] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1066), - [4670] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1067), - [4674] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1226), - [4678] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(163), - [4682] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(164), - [4686] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), - [4691] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), - [4694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), - [4696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(147), - [4699] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3, .rename_sequence_id = 1), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [4705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_assignment_expression, 3, .fragile = true), - [4708] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3, .rename_sequence_id = 1), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [4713] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1069), - [4716] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(151), - [4719] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1059), - [4722] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1058), - [4725] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1059), - [4728] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1063), - [4731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1061), - [4734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1065), - [4737] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1066), - [4740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1066), - [4743] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1067), - [4746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1226), - [4749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(163), - [4752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(164), - [4755] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [4759] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [4762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4765] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4768] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4772] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4776] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 12), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4780] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(147), - [4783] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(148), - [4786] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1323), - [4789] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1069), - [4792] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(151), - [4795] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1059), - [4798] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1058), - [4801] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1059), - [4804] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1063), - [4807] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1061), - [4810] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1065), - [4813] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1066), - [4816] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1066), - [4819] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1067), - [4822] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1226), - [4825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(163), - [4828] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(164), - [4831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [4833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), - [4835] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1327), - [4837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), - [4839] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(147), - [4842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), - [4844] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(1069), - [4847] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(151), - [4850] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(1059), - [4853] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(1058), - [4856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(1059), - [4859] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(1063), - [4862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(1061), - [4865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(1065), - [4868] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(1066), - [4871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(1066), - [4874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(1067), - [4877] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(1226), - [4880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(163), - [4883] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(164), - [4886] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(147), - [4890] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), - [4893] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1069), - [4897] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(151), - [4901] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1059), - [4905] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1058), - [4909] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1059), - [4913] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1063), - [4917] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1061), - [4921] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1065), - [4925] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1066), - [4929] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1066), - [4933] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1067), - [4937] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1226), - [4941] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(163), - [4945] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(164), - [4949] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(147), - [4952] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1069), - [4955] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(151), - [4958] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1059), - [4961] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1058), - [4964] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1059), - [4967] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1063), - [4970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1061), - [4973] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1065), - [4976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1066), - [4979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1066), - [4982] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1067), - [4985] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1226), - [4988] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(163), - [4991] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(164), - [4994] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(147), - [4997] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1069), - [5000] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(151), - [5003] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1059), - [5006] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1058), - [5009] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1059), - [5012] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1063), - [5015] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1061), - [5018] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1065), - [5021] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1066), - [5024] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1066), - [5027] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1067), - [5030] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1226), - [5033] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(163), - [5036] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(164), - [5039] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(147), - [5042] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1069), - [5045] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(151), - [5048] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1059), - [5051] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1058), - [5054] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1059), - [5057] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1063), - [5060] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1061), - [5063] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1065), - [5066] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1066), - [5069] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1066), - [5072] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1067), - [5075] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1226), - [5078] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(163), - [5081] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(164), - [5084] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(147), - [5087] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1069), - [5090] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(151), - [5093] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1059), - [5096] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1058), - [5099] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1059), - [5102] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1063), - [5105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1061), - [5108] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1065), - [5111] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1066), - [5114] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1066), - [5117] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1067), - [5120] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1226), - [5123] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(163), - [5126] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(164), - [5129] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(147), - [5132] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1069), - [5135] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(151), - [5138] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1059), - [5141] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1058), - [5144] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1059), - [5147] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1063), - [5150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1061), - [5153] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1065), - [5156] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1066), - [5159] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1066), - [5162] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1067), - [5165] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1226), - [5168] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(163), - [5171] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(164), - [5174] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(147), - [5177] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1069), - [5180] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(151), - [5183] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1059), - [5186] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1058), - [5189] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1059), - [5192] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1063), - [5195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1061), - [5198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1065), - [5201] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1066), - [5204] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1066), - [5207] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1067), - [5210] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1226), - [5213] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(163), - [5216] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(164), - [5219] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(147), - [5222] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1069), - [5225] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(151), - [5228] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1059), - [5231] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1058), - [5234] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1059), - [5237] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1063), - [5240] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1061), - [5243] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1065), - [5246] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1066), - [5249] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1066), - [5252] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1067), - [5255] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1226), - [5258] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(163), - [5261] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(164), - [5264] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(147), - [5268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), - [5271] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1069), - [5275] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(151), - [5279] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1059), - [5283] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1058), - [5287] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1059), - [5291] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1063), - [5295] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1061), - [5299] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1065), - [5303] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1066), - [5307] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1066), - [5311] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1067), - [5315] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1226), - [5319] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(163), - [5323] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(164), - [5327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(147), - [5330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), - [5332] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(1069), - [5335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(151), - [5338] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(1059), - [5341] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(1058), - [5344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(1059), - [5347] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(1063), - [5350] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(1061), - [5353] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(1065), - [5356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(1066), - [5359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(1066), - [5362] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(1067), - [5365] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(1226), - [5368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(163), - [5371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(164), - [5374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(147), - [5377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1069), - [5380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(151), - [5383] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1059), - [5386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1058), - [5389] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1059), - [5392] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1063), - [5395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1061), - [5398] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1065), - [5401] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1066), - [5404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1066), - [5407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1067), - [5410] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1226), - [5413] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(163), - [5416] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(164), - [5419] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(147), - [5422] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1069), - [5425] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(151), - [5428] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1059), - [5431] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1058), - [5434] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1059), - [5437] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1063), - [5440] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1061), - [5443] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1065), - [5446] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1066), - [5449] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1066), - [5452] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1067), - [5455] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1226), - [5458] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(163), - [5461] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(164), - [5464] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2, .rename_sequence_id = 14), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [5467] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2, .rename_sequence_id = 14), REDUCE(sym_field_expression, 3, .rename_sequence_id = 13), - [5470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1332), - [5472] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), - [5475] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), - [5478] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 11), - [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), - [5483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), - [5485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), - [5487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1337), - [5489] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [5492] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [5495] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 4), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 5), - [5498] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [5503] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [5508] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [5513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), - [5515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1340), - [5517] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5520] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5523] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5526] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1209), - [5529] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), - [5534] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), - [5537] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__field_declarator, 1, .fragile = true, .rename_sequence_id = 7), - [5540] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(315), - [5543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), - [5545] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), REDUCE(sym_function_definition, 3), - [5548] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 2), REDUCE(sym_function_definition, 3), - [5551] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 2), REDUCE(sym_function_definition, 3), - [5554] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), REDUCE(sym_field_declaration, 3), - [5557] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 2), REDUCE(sym_field_declaration, 3), - [5560] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), REDUCE(sym_field_declaration, 3), - [5563] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 2), REDUCE(sym_type_descriptor, 3), - [5566] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), - [5569] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(106), - [5574] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), - [5577] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(8), - [5582] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(10), - [5585] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), - [5589] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(30), - [5594] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), - [5597] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1051), - [5600] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1053), - [5603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1054), - [5606] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1055), - [5609] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1140), - [5612] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(24), - [5615] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1057), - [5618] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(26), - [5621] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(27), - [5624] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(28), - [5627] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(29), - [5630] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(31), - [5633] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(32), - [5636] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(33), - [5641] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(33), - [5646] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(34), - [5649] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(35), - [5652] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(36), - [5655] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1179), - [5658] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [5661] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [5664] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(1145), - [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1345), - [5674] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [5677] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(1340), - [5685] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [5692] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [5699] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(1109), - [5707] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [5712] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1109), - [5716] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1110), - [5720] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1111), - [5724] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1112), - [5728] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1112), - [5732] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1113), - [5736] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(35), - [5740] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(36), - [5744] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(102), - [5752] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), - [5761] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), - [5767] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), - [5770] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), - [5780] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), - [5785] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_field_declarator, 5), - [5789] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1137), - [5793] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), - [5796] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1139), - [5800] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(1062), - [5803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(1064), - [5806] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1141), - [5810] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1141), - [5814] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(1071), - [5817] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(35), - [5820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(36), - [5823] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(102), - [5826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), - [5829] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), - [5832] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), - [5835] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [5838] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [5841] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [5844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), - [5846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), - [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), - [5850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), - [5852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [5854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), - [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [5858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), - [5861] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), - [5864] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), - [5867] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(106), - [5870] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(8), - [5873] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(30), - [5876] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(33), - [5879] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(33), - [5882] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1242), - [5885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), - [5887] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(147), - [5890] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1258), - [5893] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(151), - [5896] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1259), - [5899] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1260), - [5902] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1259), - [5905] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1261), - [5908] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1262), - [5911] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1263), - [5914] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1264), - [5917] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1264), - [5920] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1265), - [5923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(163), - [5926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(164), - [5929] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1258), - [5932] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1259), - [5935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1260), - [5938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1259), - [5941] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1261), - [5944] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1262), - [5947] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1263), - [5950] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1264), - [5953] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1264), - [5956] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1265), - [5959] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1258), - [5962] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1259), - [5965] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1260), - [5968] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1259), - [5971] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1261), - [5974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1262), - [5977] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1263), - [5980] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1264), - [5983] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1264), - [5986] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1265), - [5989] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(147), - [5992] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1258), - [5995] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(151), - [5998] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1259), - [6001] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1260), - [6004] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1259), - [6007] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1261), - [6010] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1262), - [6013] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1263), - [6016] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1264), - [6019] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1264), - [6022] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1265), - [6025] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(163), - [6028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(164), - [6031] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1258), - [6034] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1259), - [6037] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1260), - [6040] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1259), - [6043] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1261), - [6046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1262), - [6049] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1263), - [6052] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1264), - [6055] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1264), - [6058] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1265), - [6061] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(498), - [6064] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), - [6067] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(aux_sym_preproc_params_repeat1, 2), - [6070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), - [6072] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1281), - [6075] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1282), - [6078] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1283), - [6081] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1282), - [6084] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1284), - [6087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1285), - [6090] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1286), - [6093] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1287), - [6096] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1287), - [6099] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1288), - [6102] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1281), - [6105] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1282), - [6108] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1283), - [6111] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1282), - [6114] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1284), - [6117] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1285), - [6120] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1286), - [6123] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1287), - [6126] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1287), - [6129] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1288), - [6132] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1281), - [6135] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1282), - [6138] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1283), - [6141] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1282), - [6144] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1284), - [6147] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1285), - [6150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1286), - [6153] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1287), - [6156] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1287), - [6159] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1288), - [6162] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1281), - [6165] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1282), - [6168] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1283), - [6171] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1282), - [6174] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1284), - [6177] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1285), - [6180] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1286), - [6183] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1287), - [6186] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1287), - [6189] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1288), - [6192] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1281), - [6195] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1282), - [6198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1283), - [6201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1282), - [6204] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1284), - [6207] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1285), - [6210] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1286), - [6213] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1287), - [6216] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1287), - [6219] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1288), - [6222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [6224] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [6227] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [6230] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1069), - [6233] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1059), - [6236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1058), - [6239] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1059), - [6242] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1063), - [6245] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1061), - [6248] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1065), - [6251] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1066), - [6254] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1066), - [6257] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1067), - [6260] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1226), - [6263] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [6267] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [6271] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [6275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), - [6277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), - [6279] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1314), - [6282] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1315), - [6285] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1316), - [6288] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1315), - [6291] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1317), - [6294] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1318), - [6297] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1319), - [6300] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1320), - [6303] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1320), - [6306] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1321), - [6309] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1314), - [6312] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1315), - [6315] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1316), - [6318] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1315), - [6321] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1317), - [6324] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1318), - [6327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1319), - [6330] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1320), - [6333] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1320), - [6336] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1321), - [6339] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1314), - [6342] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1315), - [6345] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1316), - [6348] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1315), - [6351] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1317), - [6354] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1318), - [6357] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1319), - [6360] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1320), - [6363] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1320), - [6366] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1321), - [6369] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1314), - [6372] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1315), - [6375] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1316), - [6378] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1315), - [6381] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1317), - [6384] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1318), - [6387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1319), - [6390] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1320), - [6393] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1320), - [6396] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1321), - [6399] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1314), - [6402] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1315), - [6405] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1316), - [6408] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1315), - [6411] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1317), - [6414] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1318), - [6417] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1319), - [6420] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1320), - [6423] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1320), - [6426] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1321), - [6429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), - [6431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1396), - [6433] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [6439] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), - [6443] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [6450] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [6454] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), - [6457] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [6463] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [6469] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [6475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [6477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), - [6479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407), - [6481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), - [6483] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(525), - [6486] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 2), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(526), - [6491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), - [6493] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), + [3529] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_descriptor, 2), REDUCE(sym_type_descriptor, 3), SHIFT(375), + [3535] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 2, .fragile = true), SHIFT(224), + [3538] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(86), + [3542] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(87), + [3546] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3561] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_function_definition, 3), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3577] = {.count = 15, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_function_definition, 3), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3593] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_function_definition, 3), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3609] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3624] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(976), + [3638] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(451), + [3654] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_type_descriptor_repeat1, 2), + [3659] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), REDUCE(aux_sym_type_descriptor_repeat1, 2), + [3664] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), SHIFT(122), + [3668] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), + [3671] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym_type_descriptor, 1), REDUCE(sym__declaration_specifiers, 2), REDUCE(sym_type_descriptor, 2), + [3676] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), SHIFT(123), + [3680] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), SHIFT(124), + [3684] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), + [3687] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym__declaration_specifiers, 2), + [3690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 2), + [3693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 2), + [3696] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), REDUCE(sym_enum_specifier, 3, .rename_sequence_id = 2), + [3699] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [3704] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [3709] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), REDUCE(sym_union_specifier, 2), REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [3714] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [3717] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [3720] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_list_repeat1, 1), REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [3723] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), REDUCE(aux_sym_enumerator_list_repeat1, 3), SHIFT(109), + [3727] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), REDUCE(aux_sym_enumerator_list_repeat1, 3), SHIFT(107), + [3731] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 1), REDUCE(sym_function_declarator, 2), REDUCE(sym_function_field_declarator, 2), REDUCE(sym_abstract_function_declarator, 2), + [3736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 2), REDUCE(sym_function_field_declarator, 2), + [3739] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(227), + [3743] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 3), SHIFT(228), + [3747] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3762] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3777] = {.count = 14, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3792] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(976), + [3806] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_if_statement, 7), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(451), + [3822] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(281), + [3838] = {.count = 22, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3, .rename_sequence_id = 5), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), REDUCE(sym__initializer_list_contents, 5), SHIFT(1150), + [3861] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1151), + [3880] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_init_declarator, 3), REDUCE(sym_comma_expression, 3), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1152), + [3898] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_enumerator, 3, .rename_sequence_id = 5), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), REDUCE(sym__initializer_list_contents, 5), + [3917] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(993), + [3933] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(285), + [3949] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1153), + [3965] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(983), + [3981] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1154), + [3997] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(982), + [4013] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(983), + [4029] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(987), + [4045] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(985), + [4061] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(989), + [4077] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(990), + [4093] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(990), + [4109] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(991), + [4125] = {.count = 15, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1155), + [4141] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(297), + [4157] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_logical_expression, 2, .fragile = true), REDUCE(sym_bitwise_expression, 2, .fragile = true), REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_sizeof_expression, 2, .fragile = true), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym_logical_expression, 3, .fragile = true), REDUCE(sym_bitwise_expression, 3, .fragile = true), REDUCE(sym_equality_expression, 3, .fragile = true), REDUCE(sym_relational_expression, 3, .fragile = true), REDUCE(sym_shift_expression, 3, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), REDUCE(sym_cast_expression, 4, .fragile = true), REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(298), + [4173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(388), + [4176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(283), + [4179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [4181] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), + [4187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), + [4190] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym_compound_literal_expression, 4), REDUCE(sym__initializer_list_contents, 5), + [4195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [4198] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(1157), + [4201] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else_in_compound_statement, 2), SHIFT(1159), + [4204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1160), + [4206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1161), + [4208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1162), + [4210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1163), + [4212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1164), + [4214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1165), + [4216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1166), + [4218] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), + [4221] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), + [4224] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), SHIFT(15), + [4228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [4230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [4232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [4234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [4236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1172), + [4238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [4240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [4242] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [4245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 2), + [4247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), + [4249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), + [4251] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1032), + [4254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1174), + [4256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), + [4258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [4260] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(38), + [4266] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(186), + [4270] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(187), + [4276] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [4281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), + [4283] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), + [4286] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_type_descriptor_repeat1, 1), + [4289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), SHIFT(122), + [4292] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), REDUCE(sym_type_descriptor, 1), + [4295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), SHIFT(123), + [4298] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), SHIFT(124), + [4301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [4303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [4305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [4307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1186), + [4309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1187), + [4311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [4313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [4315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1189), + [4317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [4319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [4321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1192), + [4323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), + [4325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1193), + [4327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [4329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1195), + [4331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameter_list, 3), + [4333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), + [4335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), + [4337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1198), + [4339] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), REDUCE(aux_sym_parameter_list_repeat1, 3), + [4344] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), + [4349] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), + [4353] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enumerator_list, 5), + [4358] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), + [4362] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 3), REDUCE(sym_enumerator_list, 4), REDUCE(sym_enumerator_list, 5), + [4366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1200), + [4368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), + [4370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), + [4372] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym_enumerator, 1, .rename_sequence_id = 5), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), + [4380] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_preproc_params_repeat1, 3), + [4385] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [4389] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1, .rename_sequence_id = 5), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [4392] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(108), + [4396] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), + [4399] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_field_declaration_repeat1, 2), REDUCE(aux_sym_field_declaration_repeat1, 3), + [4402] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_enumerator_list_repeat1, 2), REDUCE(aux_sym_enumerator_list_repeat1, 3), + [4405] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 3), + [4408] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), SHIFT(1208), + [4413] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), + [4417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1209), + [4419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1210), + [4421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), + [4423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [4425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1212), + [4427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), + [4429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), + [4431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1215), + [4433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [4435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1216), + [4437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [4439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), + [4441] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(1135), + [4444] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [4453] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [4462] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [4471] = {.count = 9, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), SHIFT(976), + [4481] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(281), + [4484] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(282), + [4487] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(283), + [4490] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(993), + [4493] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(285), + [4496] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(983), + [4499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(982), + [4502] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(983), + [4505] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(987), + [4508] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(985), + [4511] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(989), + [4514] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(990), + [4517] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(990), + [4520] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(991), + [4523] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1155), + [4526] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(297), + [4529] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(298), + [4532] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1221), + [4534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), + [4536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1132), + [4538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1222), + [4540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1223), + [4542] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), + [4545] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), + [4548] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1), + [4551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [4553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [4555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [4557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [4559] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [4562] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), + [4567] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), + [4571] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [4574] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [4577] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), + [4582] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [4586] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), REDUCE(sym_initializer_list, 2), + [4591] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), + [4595] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), + [4599] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), + [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [4606] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(108), + [4609] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), SHIFT(279), + [4612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [4616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1240), + [4618] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), SHIFT(282), + [4621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1241), + [4623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1242), + [4625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [4627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [4629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1244), + [4631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [4633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [4635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1247), + [4637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [4639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1248), + [4641] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [4644] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), + [4647] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(281), + [4651] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), + [4654] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(993), + [4658] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(285), + [4662] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(983), + [4666] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(982), + [4670] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(983), + [4674] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(987), + [4678] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(985), + [4682] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(989), + [4686] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(990), + [4690] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(990), + [4694] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(991), + [4698] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1155), + [4702] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(297), + [4706] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(298), + [4710] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), REDUCE(sym_abstract_array_declarator, 3), + [4715] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), REDUCE(sym_array_field_declarator, 3), + [4718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [4720] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(281), + [4723] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_enumerator, 3, .rename_sequence_id = 5), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [4729] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_assignment_expression, 3, .fragile = true), + [4732] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3, .rename_sequence_id = 5), REDUCE(sym_assignment_expression, 3, .fragile = true), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [4737] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(993), + [4740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(285), + [4743] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(983), + [4746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(982), + [4749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(983), + [4752] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(987), + [4755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(985), + [4758] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(989), + [4761] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(990), + [4764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(990), + [4767] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(991), + [4770] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1155), + [4773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(297), + [4776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(298), + [4779] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [4783] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [4786] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4789] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4792] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4796] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4800] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3, .rename_sequence_id = 16), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4804] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(281), + [4807] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(282), + [4810] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1250), + [4813] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(993), + [4816] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(285), + [4819] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(983), + [4822] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(982), + [4825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(983), + [4828] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(987), + [4831] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(985), + [4834] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(989), + [4837] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(990), + [4840] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(990), + [4843] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(991), + [4846] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1155), + [4849] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(297), + [4852] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(298), + [4855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), + [4857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), + [4859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1254), + [4861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), + [4863] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(281), + [4866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), + [4868] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(993), + [4871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(285), + [4874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(983), + [4877] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(982), + [4880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(983), + [4883] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(987), + [4886] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(985), + [4889] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(989), + [4892] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(990), + [4895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(990), + [4898] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(991), + [4901] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3), SHIFT(1155), + [4904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(297), + [4907] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3), SHIFT(298), + [4910] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(281), + [4914] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), + [4917] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(993), + [4921] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(285), + [4925] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(983), + [4929] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(982), + [4933] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(983), + [4937] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(987), + [4941] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(985), + [4945] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(989), + [4949] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(990), + [4953] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(990), + [4957] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(991), + [4961] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1155), + [4965] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(297), + [4969] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2), REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(298), + [4973] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(281), + [4976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(993), + [4979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(285), + [4982] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(983), + [4985] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(982), + [4988] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(983), + [4991] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(987), + [4994] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(985), + [4997] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(989), + [5000] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(990), + [5003] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(990), + [5006] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(991), + [5009] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1155), + [5012] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(297), + [5015] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(298), + [5018] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(281), + [5021] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(993), + [5024] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(285), + [5027] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(983), + [5030] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(982), + [5033] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(983), + [5036] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(987), + [5039] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(985), + [5042] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(989), + [5045] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(990), + [5048] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(990), + [5051] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(991), + [5054] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1155), + [5057] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(297), + [5060] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(298), + [5063] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(281), + [5066] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(993), + [5069] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(285), + [5072] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(983), + [5075] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(982), + [5078] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(983), + [5081] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(987), + [5084] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(985), + [5087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(989), + [5090] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(990), + [5093] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(990), + [5096] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(991), + [5099] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1155), + [5102] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(297), + [5105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(298), + [5108] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(281), + [5111] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(993), + [5114] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(285), + [5117] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(983), + [5120] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(982), + [5123] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(983), + [5126] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(987), + [5129] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(985), + [5132] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(989), + [5135] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(990), + [5138] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(990), + [5141] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(991), + [5144] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1155), + [5147] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(297), + [5150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(298), + [5153] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(281), + [5156] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(993), + [5159] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(285), + [5162] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(983), + [5165] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(982), + [5168] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(983), + [5171] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(987), + [5174] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(985), + [5177] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(989), + [5180] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(990), + [5183] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(990), + [5186] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(991), + [5189] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1155), + [5192] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(297), + [5195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(298), + [5198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(281), + [5201] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(993), + [5204] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(285), + [5207] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(983), + [5210] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(982), + [5213] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(983), + [5216] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(987), + [5219] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(985), + [5222] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(989), + [5225] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(990), + [5228] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(990), + [5231] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(991), + [5234] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1155), + [5237] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(297), + [5240] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(298), + [5243] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(281), + [5246] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(993), + [5249] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(285), + [5252] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(983), + [5255] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(982), + [5258] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(983), + [5261] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(987), + [5264] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(985), + [5267] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(989), + [5270] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(990), + [5273] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(990), + [5276] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(991), + [5279] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1155), + [5282] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(297), + [5285] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(298), + [5288] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(281), + [5292] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), + [5295] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(993), + [5299] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(285), + [5303] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(983), + [5307] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(982), + [5311] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(983), + [5315] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(987), + [5319] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(985), + [5323] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(989), + [5327] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(990), + [5331] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(990), + [5335] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(991), + [5339] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1155), + [5343] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(297), + [5347] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(298), + [5351] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(281), + [5354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), + [5356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(993), + [5359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(285), + [5362] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(983), + [5365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(982), + [5368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(983), + [5371] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(987), + [5374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(985), + [5377] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(989), + [5380] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(990), + [5383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(990), + [5386] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(991), + [5389] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3), SHIFT(1155), + [5392] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(297), + [5395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3), SHIFT(298), + [5398] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(281), + [5401] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(993), + [5404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(285), + [5407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(983), + [5410] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(982), + [5413] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(983), + [5416] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(987), + [5419] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(985), + [5422] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(989), + [5425] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(990), + [5428] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(990), + [5431] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(991), + [5434] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1155), + [5437] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(297), + [5440] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(298), + [5443] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(281), + [5446] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(993), + [5449] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(285), + [5452] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(983), + [5455] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(982), + [5458] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(983), + [5461] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(987), + [5464] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(985), + [5467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(989), + [5470] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(990), + [5473] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(990), + [5476] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(991), + [5479] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1155), + [5482] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(297), + [5485] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(298), + [5488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2, .rename_sequence_id = 18), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [5491] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2, .rename_sequence_id = 18), REDUCE(sym_field_expression, 3, .rename_sequence_id = 17), + [5494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1259), + [5496] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [5499] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [5502] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [5505] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), + [5508] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), + [5511] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3, .rename_sequence_id = 15), + [5514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), + [5516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1262), + [5518] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [5521] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [5524] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3, .rename_sequence_id = 3), REDUCE(sym_union_specifier, 3, .rename_sequence_id = 4), + [5527] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), + [5532] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), + [5537] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), + [5542] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [5547] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [5552] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .rename_sequence_id = 19), REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [5557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), + [5559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), + [5561] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5564] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5567] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5570] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1141), + [5573] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), + [5578] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), + [5581] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1, .fragile = true, .rename_sequence_id = 5), REDUCE(sym__field_declarator, 1, .rename_sequence_id = 7), + [5584] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(86), + [5587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1267), + [5589] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_descriptor, 2), REDUCE(sym_type_descriptor, 3), + [5592] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 2), REDUCE(sym__declaration_specifiers, 3), + [5595] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(138), + [5600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), + [5603] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(141), + [5608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(88), + [5611] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), + [5615] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(143), + [5620] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), + [5623] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(975), + [5626] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(977), + [5629] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(978), + [5632] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(979), + [5635] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1068), + [5638] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(149), + [5641] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(981), + [5644] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(151), + [5647] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(152), + [5650] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(153), + [5653] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(154), + [5656] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(155), + [5659] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(156), + [5662] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(157), + [5667] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(157), + [5672] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(158), + [5675] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(159), + [5678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(160), + [5681] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1109), + [5684] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1078), + [5688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [5690] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [5693] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [5696] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1266), + [5700] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), + [5706] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [5709] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), + [5715] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1037), + [5719] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1038), + [5723] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1039), + [5727] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1040), + [5731] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1040), + [5735] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1041), + [5739] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(159), + [5743] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(160), + [5747] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), SHIFT(180), + [5754] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), + [5763] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), + [5769] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), + [5772] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), + [5782] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_declarator, 5), + [5787] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), REDUCE(sym_array_field_declarator, 5), + [5791] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1065), + [5795] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), + [5798] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1067), + [5802] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(986), + [5805] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(988), + [5808] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1069), + [5812] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), REDUCE(sym_macro_type_specifier, 4), SHIFT(1069), + [5816] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(995), + [5819] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(159), + [5822] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(160), + [5825] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(180), + [5828] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), + [5831] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), + [5834] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), + [5837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [5839] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [5842] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [5845] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [5850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [5852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [5854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), + [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [5858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [5860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), + [5862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(138), + [5865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(141), + [5868] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(143), + [5871] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(157), + [5874] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(157), + [5877] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(1170), + [5880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [5882] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(281), + [5885] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1186), + [5888] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(285), + [5891] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1187), + [5894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1188), + [5897] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1187), + [5900] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1189), + [5903] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1190), + [5906] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1191), + [5909] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1192), + [5912] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1192), + [5915] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1193), + [5918] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(297), + [5921] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(298), + [5924] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1186), + [5927] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1187), + [5930] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1188), + [5933] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1187), + [5936] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1189), + [5939] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1190), + [5942] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1191), + [5945] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1192), + [5948] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1192), + [5951] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1193), + [5954] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1186), + [5957] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1187), + [5960] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1188), + [5963] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1187), + [5966] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1189), + [5969] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1190), + [5972] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1191), + [5975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1192), + [5978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1192), + [5981] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1193), + [5984] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(281), + [5987] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1186), + [5990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(285), + [5993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1187), + [5996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1188), + [5999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1187), + [6002] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1189), + [6005] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1190), + [6008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1191), + [6011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1192), + [6014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1192), + [6017] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1193), + [6020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(297), + [6023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(298), + [6026] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1186), + [6029] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1187), + [6032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1188), + [6035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1187), + [6038] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1189), + [6041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1190), + [6044] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1191), + [6047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1192), + [6050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1192), + [6053] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1193), + [6056] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_pointer_declarator, 1, .fragile = true), SHIFT(230), + [6059] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_list_repeat1, 2), + [6062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(aux_sym_preproc_params_repeat1, 2), + [6065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [6067] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1209), + [6070] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1210), + [6073] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1211), + [6076] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1210), + [6079] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1212), + [6082] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1213), + [6085] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1214), + [6088] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1215), + [6091] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1215), + [6094] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1216), + [6097] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1209), + [6100] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1210), + [6103] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1211), + [6106] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1210), + [6109] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1212), + [6112] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1213), + [6115] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1214), + [6118] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1215), + [6121] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1215), + [6124] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1216), + [6127] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1209), + [6130] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1210), + [6133] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1211), + [6136] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1210), + [6139] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1212), + [6142] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1213), + [6145] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1214), + [6148] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1215), + [6151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1215), + [6154] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1216), + [6157] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1209), + [6160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1210), + [6163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1211), + [6166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1210), + [6169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1212), + [6172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1213), + [6175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1214), + [6178] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1215), + [6181] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1215), + [6184] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1216), + [6187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1209), + [6190] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1210), + [6193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1211), + [6196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1210), + [6199] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1212), + [6202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1213), + [6205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1214), + [6208] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1215), + [6211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1215), + [6214] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1216), + [6217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), + [6219] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [6222] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [6225] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(993), + [6228] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(983), + [6231] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(982), + [6234] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(983), + [6237] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(987), + [6240] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(985), + [6243] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(989), + [6246] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(990), + [6249] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(990), + [6252] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(991), + [6255] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1155), + [6258] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_if_in_compound_statement, 3), + [6261] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_if_in_compound_statement, 3), + [6264] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 3), REDUCE(sym_preproc_if_in_compound_statement, 3), + [6267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1313), + [6269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1314), + [6271] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [6275] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [6279] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [6283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), + [6285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), + [6287] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1241), + [6290] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1242), + [6293] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1243), + [6296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1242), + [6299] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1244), + [6302] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1245), + [6305] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1246), + [6308] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1247), + [6311] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1247), + [6314] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pointer_expression, 2, .fragile = true), SHIFT(1248), + [6317] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1241), + [6320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1242), + [6323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1243), + [6326] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1242), + [6329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1244), + [6332] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1245), + [6335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1246), + [6338] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1247), + [6341] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1247), + [6344] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 2, .fragile = true), SHIFT(1248), + [6347] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1241), + [6350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1242), + [6353] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1243), + [6356] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1242), + [6359] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1244), + [6362] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1245), + [6365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1246), + [6368] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1247), + [6371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1247), + [6374] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 2, .fragile = true), SHIFT(1248), + [6377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1241), + [6380] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1242), + [6383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1243), + [6386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1242), + [6389] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1244), + [6392] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1245), + [6395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1246), + [6398] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1247), + [6401] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1247), + [6404] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2, .fragile = true), SHIFT(1248), + [6407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1241), + [6410] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1242), + [6413] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1243), + [6416] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1242), + [6419] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1244), + [6422] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1245), + [6425] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1246), + [6428] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1247), + [6431] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1247), + [6434] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 2, .fragile = true), SHIFT(1248), + [6437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), + [6439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1323), + [6441] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [6447] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), + [6451] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_array_field_declarator, 4), REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [6458] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [6462] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_field_declarator, 4), REDUCE(sym_subscript_expression, 4), + [6465] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), + [6470] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), + [6475] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), + [6480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), + [6482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), + [6484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), + [6486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), + [6488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(186), + [6491] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1, .fragile = true, .rename_sequence_id = 1), REDUCE(sym__expression, 1, .fragile = true, .rename_sequence_id = 5), SHIFT(187), + [6495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), [6497] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), - [6500] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), - [6504] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), - [6508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), - [6510] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), - [6515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), - [6518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), - [6520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(1280), - [6523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), - [6526] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [6533] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [6540] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [6547] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), SHIFT(1052), - [6555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [6557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), - [6559] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(149), - [6562] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(147), - [6565] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1069), - [6568] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(151), - [6571] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1059), - [6574] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1058), - [6577] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1059), - [6580] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1063), - [6583] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1061), - [6586] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1065), - [6589] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1066), - [6592] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1066), - [6595] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1067), - [6598] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1226), - [6601] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(163), - [6604] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(164), - [6607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), - [6609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1422), - [6611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), - [6613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1426), - [6615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [6618] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [6621] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), - [6624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), - [6626] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [6630] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [6634] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [6638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), - [6640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(188), - [6643] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6647] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6651] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6655] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), SHIFT(1052), - [6660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1258), - [6663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1259), - [6666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1260), - [6669] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1259), - [6672] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1261), - [6675] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1262), - [6678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1263), - [6681] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1264), - [6684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1264), - [6687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1265), - [6690] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1258), - [6693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1259), - [6696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1260), - [6699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1259), - [6702] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1261), - [6705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1262), - [6708] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1263), - [6711] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1264), - [6714] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1264), - [6717] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1265), - [6720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), - [6722] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1258), - [6725] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1259), - [6728] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1260), - [6731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1259), - [6734] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1261), - [6737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1262), - [6740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1263), - [6743] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1264), - [6746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1264), - [6749] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1265), - [6752] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1258), - [6755] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1259), - [6758] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1260), - [6761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1259), - [6764] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1261), - [6767] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1262), - [6770] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1263), - [6773] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1264), - [6776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1264), - [6779] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1265), - [6782] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1258), - [6785] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1259), - [6788] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1260), - [6791] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1259), - [6794] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1261), - [6797] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1262), - [6800] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1263), - [6803] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1264), - [6806] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1264), - [6809] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1265), - [6812] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1258), - [6815] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1259), - [6818] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1260), - [6821] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1259), - [6824] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1261), - [6827] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1262), - [6830] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1263), - [6833] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1264), - [6836] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1264), - [6839] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1265), - [6842] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1258), - [6845] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1259), - [6848] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1260), - [6851] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1259), - [6854] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1261), - [6857] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1262), - [6860] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1263), - [6863] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1264), - [6866] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1264), - [6869] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1265), - [6872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), - [6874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), - [6876] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1281), - [6879] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1282), - [6882] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1283), - [6885] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1282), - [6888] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1284), - [6891] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1285), - [6894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1286), - [6897] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1287), - [6900] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1287), - [6903] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1288), - [6906] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1281), - [6909] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1282), - [6912] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1283), - [6915] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1282), - [6918] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1284), - [6921] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1285), - [6924] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1286), - [6927] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1287), - [6930] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1287), - [6933] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1288), - [6936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), - [6938] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1281), - [6941] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1282), - [6944] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1283), - [6947] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1282), - [6950] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1284), - [6953] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1285), - [6956] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1286), - [6959] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1287), - [6962] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1287), - [6965] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1288), - [6968] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1281), - [6971] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1282), - [6974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1283), - [6977] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1282), - [6980] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1284), - [6983] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1285), - [6986] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1286), - [6989] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1287), - [6992] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1287), - [6995] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1288), - [6998] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1281), - [7001] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1282), - [7004] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1283), - [7007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1282), - [7010] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1284), - [7013] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1285), - [7016] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1286), - [7019] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1287), - [7022] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1287), - [7025] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1288), - [7028] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1281), - [7031] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1282), - [7034] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1283), - [7037] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1282), - [7040] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1284), - [7043] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1285), - [7046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1286), - [7049] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1287), - [7052] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1287), - [7055] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1288), - [7058] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1281), - [7061] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1282), - [7064] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1283), - [7067] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1282), - [7070] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1284), - [7073] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1285), - [7076] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1286), - [7079] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1287), - [7082] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1287), - [7085] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1288), - [7088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [7090] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [7093] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [7096] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [7099] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [7103] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [7107] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [7111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), - [7113] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1314), - [7116] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1315), - [7119] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1316), - [7122] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1315), - [7125] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1317), - [7128] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1318), - [7131] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1319), - [7134] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1320), - [7137] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1320), - [7140] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1321), - [7143] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1314), - [7146] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1315), - [7149] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1316), - [7152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1315), - [7155] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1317), - [7158] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1318), - [7161] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1319), - [7164] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1320), - [7167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1320), - [7170] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1321), - [7173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), - [7175] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1314), - [7178] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1315), - [7181] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1316), - [7184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1315), - [7187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1317), - [7190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1318), - [7193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1319), - [7196] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1320), - [7199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1320), - [7202] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1321), - [7205] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1314), - [7208] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1315), - [7211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1316), - [7214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1315), - [7217] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1317), - [7220] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1318), - [7223] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1319), - [7226] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1320), - [7229] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1320), - [7232] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1321), - [7235] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1314), - [7238] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1315), - [7241] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1316), - [7244] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1315), - [7247] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1317), - [7250] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1318), - [7253] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1319), - [7256] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1320), - [7259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1320), - [7262] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1321), - [7265] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1314), - [7268] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1315), - [7271] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1316), - [7274] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1315), - [7277] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1317), - [7280] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1318), - [7283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1319), - [7286] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1320), - [7289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1320), - [7292] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1321), - [7295] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1314), - [7298] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1315), - [7301] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1316), - [7304] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1315), - [7307] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1317), - [7310] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1318), - [7313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1319), - [7316] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1320), - [7319] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1320), - [7322] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1321), - [7325] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(106), - [7328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(8), - [7331] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(30), - [7334] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(31), - [7337] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(33), - [7340] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(33), - [7343] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1137), - [7346] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1139), - [7349] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1141), - [7352] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1141), - [7355] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(106), - [7358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(30), - [7361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(31), - [7364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(32), - [7367] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(33), - [7370] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(33), - [7373] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(34), - [7376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), - [7378] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), - [7381] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), - [7384] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 4), REDUCE(sym_field_declaration, 5), - [7387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [7390] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [7393] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [7396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), - [7398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [7400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), - [7402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), - [7404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), - [7406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), - [7408] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [7411] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [7414] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_declaration, 5), REDUCE(sym_field_declaration, 6), - [7417] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1258), - [7420] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1259), - [7423] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1260), - [7426] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1259), - [7429] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1261), - [7432] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1262), - [7435] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1263), - [7438] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1264), - [7441] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1264), - [7444] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1265), - [7447] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1145), - [7450] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1109), - [7453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1110), - [7455] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1112), - [7458] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1112), - [7461] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1281), - [7464] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1282), - [7467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1283), - [7470] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1282), - [7473] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1284), - [7476] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1285), - [7479] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1286), - [7482] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1287), - [7485] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1287), - [7488] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1288), - [7491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1274), - [7494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1125), - [7497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [7499] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1128), - [7502] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1128), - [7505] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1314), - [7508] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1315), - [7511] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1316), - [7514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1315), - [7517] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1317), - [7520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1318), - [7523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1319), - [7526] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1320), - [7529] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1320), - [7532] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1321), - [7535] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1305), - [7538] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1154), - [7541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1155), - [7543] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1157), - [7546] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1157), - [7549] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), SHIFT(1052), - [7552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), - [7554] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [7557] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [7560] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [7563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), - [7565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [7567] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1258), - [7570] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1259), - [7573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1260), - [7576] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1259), - [7579] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1261), - [7582] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1262), - [7585] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1263), - [7588] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1264), - [7591] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1264), - [7594] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1265), - [7597] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1281), - [7600] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1282), - [7603] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1283), - [7606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1282), - [7609] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1284), - [7612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1285), - [7615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1286), - [7618] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1287), - [7621] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1287), - [7624] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1288), - [7627] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1314), - [7630] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1315), - [7633] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1316), - [7636] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1315), - [7639] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1317), - [7642] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1318), - [7645] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1319), - [7648] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1320), - [7651] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1320), - [7654] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1321), - [7657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), - [7659] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [7662] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [7665] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [7668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1462), - [7670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [7672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), - [7674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), - [7676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), - [7678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), + [6500] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_enumerator_list, 2), REDUCE(sym_field_declaration_list, 2), + [6504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), + [6506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), + [6508] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), REDUCE(sym_abstract_array_declarator, 5), + [6513] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_field_declarator, 5), + [6516] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(1208), + [6519] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), + [6522] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [6529] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [6536] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [6543] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), SHIFT(976), + [6551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), + [6553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1344), + [6555] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(283), + [6558] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(281), + [6561] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(993), + [6564] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(285), + [6567] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(983), + [6570] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(982), + [6573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(983), + [6576] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(987), + [6579] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(985), + [6582] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(989), + [6585] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(990), + [6588] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(990), + [6591] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(991), + [6594] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1155), + [6597] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(297), + [6600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(298), + [6603] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), + [6606] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), + [6609] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), + [6612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), + [6614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1349), + [6616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), + [6618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1353), + [6620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [6623] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [6626] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .rename_sequence_id = 20), REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .rename_sequence_id = 20), + [6629] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [6633] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [6637] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [6641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), + [6643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(387), + [6646] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6650] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6654] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6658] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), SHIFT(976), + [6663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1186), + [6666] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1187), + [6669] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1188), + [6672] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1187), + [6675] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1189), + [6678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1190), + [6681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1191), + [6684] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1192), + [6687] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1192), + [6690] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1193), + [6693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1186), + [6696] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1187), + [6699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1188), + [6702] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1187), + [6705] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1189), + [6708] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1190), + [6711] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1191), + [6714] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1192), + [6717] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1192), + [6720] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1193), + [6723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), + [6725] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1186), + [6728] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1187), + [6731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1188), + [6734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1187), + [6737] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1189), + [6740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1190), + [6743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1191), + [6746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1192), + [6749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1192), + [6752] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1193), + [6755] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1186), + [6758] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1187), + [6761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1188), + [6764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1187), + [6767] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1189), + [6770] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1190), + [6773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1191), + [6776] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1192), + [6779] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1192), + [6782] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1193), + [6785] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1186), + [6788] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1187), + [6791] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1188), + [6794] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1187), + [6797] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1189), + [6800] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1190), + [6803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1191), + [6806] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1192), + [6809] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1192), + [6812] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1193), + [6815] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1186), + [6818] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1187), + [6821] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1188), + [6824] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1187), + [6827] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1189), + [6830] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1190), + [6833] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1191), + [6836] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1192), + [6839] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1192), + [6842] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1193), + [6845] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1186), + [6848] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1187), + [6851] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1188), + [6854] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1187), + [6857] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1189), + [6860] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1190), + [6863] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1191), + [6866] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1192), + [6869] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1192), + [6872] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1193), + [6875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), + [6877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [6879] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1209), + [6882] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1210), + [6885] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1211), + [6888] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1210), + [6891] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1212), + [6894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1213), + [6897] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1214), + [6900] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1215), + [6903] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1215), + [6906] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1216), + [6909] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1209), + [6912] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1210), + [6915] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1211), + [6918] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1210), + [6921] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1212), + [6924] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1213), + [6927] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1214), + [6930] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1215), + [6933] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1215), + [6936] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1216), + [6939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), + [6941] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1209), + [6944] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1210), + [6947] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1211), + [6950] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1210), + [6953] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1212), + [6956] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1213), + [6959] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1214), + [6962] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1215), + [6965] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1215), + [6968] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1216), + [6971] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1209), + [6974] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1210), + [6977] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1211), + [6980] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1210), + [6983] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1212), + [6986] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1213), + [6989] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1214), + [6992] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1215), + [6995] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1215), + [6998] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1216), + [7001] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1209), + [7004] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1210), + [7007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1211), + [7010] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1210), + [7013] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1212), + [7016] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1213), + [7019] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1214), + [7022] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1215), + [7025] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1215), + [7028] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1216), + [7031] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1209), + [7034] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1210), + [7037] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1211), + [7040] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1210), + [7043] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1212), + [7046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1213), + [7049] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1214), + [7052] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1215), + [7055] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1215), + [7058] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1216), + [7061] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1209), + [7064] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1210), + [7067] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1211), + [7070] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1210), + [7073] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1212), + [7076] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1213), + [7079] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1214), + [7082] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1215), + [7085] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1215), + [7088] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1216), + [7091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), + [7093] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [7096] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [7099] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [7102] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [7106] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [7110] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [7114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), + [7116] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1241), + [7119] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1242), + [7122] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1243), + [7125] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1242), + [7128] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1244), + [7131] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1245), + [7134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1246), + [7137] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1247), + [7140] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1247), + [7143] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 3, .fragile = true), SHIFT(1248), + [7146] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1241), + [7149] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1242), + [7152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1243), + [7155] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1242), + [7158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1244), + [7161] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1245), + [7164] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1246), + [7167] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1247), + [7170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1247), + [7173] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), SHIFT(1248), + [7176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [7178] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1241), + [7181] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1242), + [7184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1243), + [7187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1242), + [7190] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1244), + [7193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1245), + [7196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1246), + [7199] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1247), + [7202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1247), + [7205] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bitwise_expression, 3, .fragile = true), SHIFT(1248), + [7208] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1241), + [7211] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1242), + [7214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1243), + [7217] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1242), + [7220] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1244), + [7223] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1245), + [7226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1246), + [7229] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1247), + [7232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1247), + [7235] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_logical_expression, 3, .fragile = true), SHIFT(1248), + [7238] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1241), + [7241] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1242), + [7244] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1243), + [7247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1242), + [7250] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1244), + [7253] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1245), + [7256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1246), + [7259] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1247), + [7262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1247), + [7265] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_equality_expression, 3, .fragile = true), SHIFT(1248), + [7268] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1241), + [7271] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1242), + [7274] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1243), + [7277] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1242), + [7280] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1244), + [7283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1245), + [7286] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1246), + [7289] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1247), + [7292] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1247), + [7295] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_relational_expression, 3, .fragile = true), SHIFT(1248), + [7298] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1241), + [7301] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1242), + [7304] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1243), + [7307] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1242), + [7310] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1244), + [7313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1245), + [7316] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1246), + [7319] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1247), + [7322] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1247), + [7325] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_shift_expression, 3, .fragile = true), SHIFT(1248), + [7328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(138), + [7331] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(141), + [7334] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(143), + [7337] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(155), + [7340] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(157), + [7343] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(157), + [7346] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1065), + [7349] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1067), + [7352] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1069), + [7355] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1069), + [7358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(138), + [7361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(143), + [7364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(155), + [7367] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(156), + [7370] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(157), + [7373] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(157), + [7376] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), SHIFT(158), + [7379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), + [7381] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [7384] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [7387] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [7390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), + [7392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), + [7394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [7396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), + [7398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), + [7400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), + [7402] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1186), + [7405] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1187), + [7408] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1188), + [7411] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1187), + [7414] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1189), + [7417] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1190), + [7420] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1191), + [7423] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1192), + [7426] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1192), + [7429] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1193), + [7432] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1078), + [7435] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1037), + [7438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1038), + [7440] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1040), + [7443] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1040), + [7446] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1209), + [7449] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1210), + [7452] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1211), + [7455] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1210), + [7458] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1212), + [7461] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1213), + [7464] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1214), + [7467] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1215), + [7470] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1215), + [7473] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1216), + [7476] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1202), + [7479] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1053), + [7482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1054), + [7484] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1056), + [7487] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1056), + [7490] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1241), + [7493] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1242), + [7496] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1243), + [7499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1242), + [7502] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1244), + [7505] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1245), + [7508] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1246), + [7511] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1247), + [7514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1247), + [7517] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_cast_expression, 4, .fragile = true), SHIFT(1248), + [7520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1082), + [7523] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1085), + [7526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1086), + [7528] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1088), + [7531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sizeof_expression, 4, .fragile = true), SHIFT(1088), + [7534] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5, .fragile = true), SHIFT(976), + [7537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), + [7539] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [7542] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [7545] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [7548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), + [7550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), + [7552] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1186), + [7555] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1187), + [7558] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1188), + [7561] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1187), + [7564] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1189), + [7567] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1190), + [7570] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1191), + [7573] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1192), + [7576] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1192), + [7579] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1193), + [7582] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1209), + [7585] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1210), + [7588] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1211), + [7591] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1210), + [7594] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1212), + [7597] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1213), + [7600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1214), + [7603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1215), + [7606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1215), + [7609] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1216), + [7612] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1241), + [7615] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1242), + [7618] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1243), + [7621] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1242), + [7624] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1244), + [7627] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1245), + [7630] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1246), + [7633] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1247), + [7636] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1247), + [7639] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_conditional_expression, 5, .fragile = true), SHIFT(1248), + [7642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), + [7644] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [7647] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [7650] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [7653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1388), + [7655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), + [7657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), + [7659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), + [7661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), + [7663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), }; const TSLanguage *tree_sitter_c() {