From 0b180c200d76b4ca4df26a7c3d80d09f405cd824 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 4 Dec 2018 11:47:10 -0800 Subject: [PATCH 1/2] Use new exclude rule to ensure keywords are recognized during error recovery --- grammar.js | 79 +- src/grammar.json | 218 +- src/parser.c | 80602 +++++++++++++++++++++++++-------------------- 3 files changed, 46006 insertions(+), 34893 deletions(-) diff --git a/grammar.js b/grammar.js index e12299df..17e7969f 100644 --- a/grammar.js +++ b/grammar.js @@ -21,6 +21,48 @@ const PREC = { SUBSCRIPT: 16 }; +const SIZE_QUALIFIERS = [ + 'signed', + 'unsigned', + 'long', + 'short' +] + +const TYPE_QUALIFIERS = [ + 'const', + 'restrict', + 'volatile', + 'restrict', + '_Atomic' +] + +const STORAGE_CLASS_SPECIFIERS = [ + 'extern', + 'static' , + 'auto', + 'register', + 'inline' +] + +const KEYWORDS = [ + 'break', + 'case', + 'continue', + 'do', + 'enum', + 'for', + 'if', + 'return', + 'struct', + 'switch', + 'typedef', + 'union', + 'while', + ...STORAGE_CLASS_SPECIFIERS, + ...TYPE_QUALIFIERS, + ...SIZE_QUALIFIERS +] + module.exports = grammar({ name: 'c', @@ -32,6 +74,7 @@ module.exports = grammar({ inline: $ => [ $._statement, $._top_level_item, + $._identifier, $._type_identifier, $._field_identifier, $._statement_identifier, @@ -162,7 +205,7 @@ module.exports = grammar({ $.function_declarator, $.array_declarator, prec.dynamic(PREC.PAREN_DECLARATOR, seq('(', $._declarator, ')')), - $.identifier + $._identifier ), _field_declarator: $ => choice( @@ -239,21 +282,9 @@ module.exports = grammar({ '}' ), - storage_class_specifier: $ => choice( - 'extern', - 'static' , - 'auto', - 'register', - 'inline' - ), + storage_class_specifier: $ => choice(...STORAGE_CLASS_SPECIFIERS), - type_qualifier: $ => choice( - 'const', - 'restrict', - 'volatile', - 'restrict', - '_Atomic' - ), + type_qualifier: $ => choice(...TYPE_QUALIFIERS), _type_specifier: $ => choice( $.struct_specifier, @@ -266,12 +297,7 @@ module.exports = grammar({ ), sized_type_specifier: $ => seq( - repeat1(choice( - 'signed', - 'unsigned', - 'long', - 'short' - )), + repeat1(choice(...SIZE_QUALIFIERS)), optional(choice( prec.dynamic(-1, $._type_identifier), $.primitive_type @@ -357,7 +383,7 @@ module.exports = grammar({ bitfield_clause: $ => seq(':', $._expression), enumerator: $ => seq( - $.identifier, + $._identifier, optional(seq('=', $._expression)) ), @@ -502,7 +528,7 @@ module.exports = grammar({ $.call_expression, $.field_expression, $.compound_literal_expression, - $.identifier, + $._identifier, $.number_literal, $.string_literal, $.true, @@ -714,9 +740,10 @@ module.exports = grammar({ identifier: $ => /[a-zA-Z_]\w*/, - _type_identifier: $ => alias($.identifier, $.type_identifier), - _field_identifier: $ => alias($.identifier, $.field_identifier), - _statement_identifier: $ => alias($.identifier, $.statement_identifier), + _identifier: $ => $.identifier.exclude($.primitive_type, ...KEYWORDS), + _type_identifier: $ => alias($._identifier, $.type_identifier), + _field_identifier: $ => alias($._identifier, $.field_identifier), + _statement_identifier: $ => alias($._identifier, $.statement_identifier), _empty_declaration: $ => seq( $._declaration_specifiers, diff --git a/src/grammar.json b/src/grammar.json index e25d082a..215405f2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -913,7 +913,7 @@ }, { "type": "SYMBOL", - "name": "identifier" + "name": "_identifier" } ] }, @@ -2050,7 +2050,7 @@ "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "_identifier" }, { "type": "CHOICE", @@ -2688,7 +2688,7 @@ }, { "type": "SYMBOL", - "name": "identifier" + "name": "_identifier" }, { "type": "SYMBOL", @@ -4002,11 +4002,216 @@ "type": "PATTERN", "value": "[a-zA-Z_]\\w*" }, + "_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "EXCLUDE", + "content": { + "type": "SYMBOL", + "name": "primitive_type" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "break" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "case" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "continue" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "do" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "enum" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "for" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "if" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "return" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "struct" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "switch" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "typedef" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "union" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "while" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "extern" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "static" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "auto" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "register" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "inline" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "const" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "restrict" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "volatile" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "restrict" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "_Atomic" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "signed" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "unsigned" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "long" + } + }, + { + "type": "EXCLUDE", + "content": { + "type": "STRING", + "value": "short" + } + } + ] + }, "_type_identifier": { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_identifier" }, "named": true, "value": "type_identifier" @@ -4015,7 +4220,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_identifier" }, "named": true, "value": "field_identifier" @@ -4024,7 +4229,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_identifier" }, "named": true, "value": "statement_identifier" @@ -4147,6 +4352,7 @@ "inline": [ "_statement", "_top_level_item", + "_identifier", "_type_identifier", "_field_identifier", "_statement_identifier" diff --git a/src/parser.c b/src/parser.c index 54edb27a..6495a117 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5715,103 +5715,103 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3), - [sym_preproc_directive] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_typedef] = ACTIONS(3), - [anon_sym_extern] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_LPAREN2] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(3), - [anon_sym_static] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(3), - [anon_sym_register] = ACTIONS(3), - [anon_sym_inline] = ACTIONS(3), - [anon_sym_const] = ACTIONS(3), - [anon_sym_restrict] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(3), - [anon_sym_signed] = ACTIONS(3), - [anon_sym_unsigned] = ACTIONS(3), - [anon_sym_long] = ACTIONS(3), - [anon_sym_short] = ACTIONS(3), - [sym_primitive_type] = ACTIONS(3), - [anon_sym_enum] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(3), - [anon_sym_union] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_if] = ACTIONS(3), - [anon_sym_else] = ACTIONS(3), - [anon_sym_switch] = ACTIONS(3), - [anon_sym_case] = ACTIONS(3), - [anon_sym_default] = ACTIONS(3), - [anon_sym_while] = ACTIONS(3), - [anon_sym_do] = ACTIONS(3), - [anon_sym_for] = ACTIONS(3), - [anon_sym_return] = ACTIONS(3), - [anon_sym_break] = ACTIONS(3), - [anon_sym_continue] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3), - [anon_sym_CARET] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(3), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(3), - [anon_sym_SLASH] = ACTIONS(3), - [anon_sym_PERCENT] = ACTIONS(3), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_sizeof] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3), - [anon_sym_DASH_GT] = ACTIONS(1), - [sym_number_literal] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), - [sym_true] = ACTIONS(3), - [sym_false] = ACTIONS(3), - [sym_null] = ACTIONS(3), - [sym_identifier] = ACTIONS(3), - [sym_comment] = ACTIONS(1), + [ts_builtin_sym_end] = ACTIONS(2), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4), + [anon_sym_LPAREN] = ACTIONS(2), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2), + [anon_sym_COMMA] = ACTIONS(2), + [anon_sym_RPAREN] = ACTIONS(2), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4), + [sym_preproc_directive] = ACTIONS(4), + [anon_sym_SEMI] = ACTIONS(2), + [anon_sym_typedef] = ACTIONS(4), + [anon_sym_extern] = ACTIONS(4), + [anon_sym_LBRACE] = ACTIONS(2), + [anon_sym_RBRACE] = ACTIONS(2), + [anon_sym_LPAREN2] = ACTIONS(4), + [anon_sym_STAR] = ACTIONS(4), + [anon_sym_LBRACK] = ACTIONS(2), + [anon_sym_RBRACK] = ACTIONS(2), + [anon_sym_EQ] = ACTIONS(4), + [anon_sym_static] = ACTIONS(4), + [anon_sym_auto] = ACTIONS(4), + [anon_sym_register] = ACTIONS(4), + [anon_sym_inline] = ACTIONS(4), + [anon_sym_const] = ACTIONS(4), + [anon_sym_restrict] = ACTIONS(4), + [anon_sym_volatile] = ACTIONS(4), + [anon_sym__Atomic] = ACTIONS(4), + [anon_sym_signed] = ACTIONS(4), + [anon_sym_unsigned] = ACTIONS(4), + [anon_sym_long] = ACTIONS(4), + [anon_sym_short] = ACTIONS(4), + [sym_primitive_type] = ACTIONS(4), + [anon_sym_enum] = ACTIONS(4), + [anon_sym_struct] = ACTIONS(4), + [anon_sym_union] = ACTIONS(4), + [anon_sym_COLON] = ACTIONS(2), + [anon_sym_if] = ACTIONS(4), + [anon_sym_else] = ACTIONS(4), + [anon_sym_switch] = ACTIONS(4), + [anon_sym_case] = ACTIONS(4), + [anon_sym_default] = ACTIONS(4), + [anon_sym_while] = ACTIONS(4), + [anon_sym_do] = ACTIONS(4), + [anon_sym_for] = ACTIONS(4), + [anon_sym_return] = ACTIONS(4), + [anon_sym_break] = ACTIONS(4), + [anon_sym_continue] = ACTIONS(4), + [anon_sym_goto] = ACTIONS(4), + [anon_sym_QMARK] = ACTIONS(2), + [anon_sym_STAR_EQ] = ACTIONS(2), + [anon_sym_SLASH_EQ] = ACTIONS(2), + [anon_sym_PERCENT_EQ] = ACTIONS(2), + [anon_sym_PLUS_EQ] = ACTIONS(2), + [anon_sym_DASH_EQ] = ACTIONS(2), + [anon_sym_LT_LT_EQ] = ACTIONS(2), + [anon_sym_GT_GT_EQ] = ACTIONS(2), + [anon_sym_AMP_EQ] = ACTIONS(2), + [anon_sym_CARET_EQ] = ACTIONS(2), + [anon_sym_PIPE_EQ] = ACTIONS(2), + [anon_sym_AMP] = ACTIONS(4), + [anon_sym_PIPE_PIPE] = ACTIONS(2), + [anon_sym_AMP_AMP] = ACTIONS(2), + [anon_sym_BANG] = ACTIONS(4), + [anon_sym_PIPE] = ACTIONS(4), + [anon_sym_CARET] = ACTIONS(4), + [anon_sym_TILDE] = ACTIONS(2), + [anon_sym_EQ_EQ] = ACTIONS(2), + [anon_sym_BANG_EQ] = ACTIONS(2), + [anon_sym_LT] = ACTIONS(4), + [anon_sym_GT] = ACTIONS(4), + [anon_sym_LT_EQ] = ACTIONS(2), + [anon_sym_GT_EQ] = ACTIONS(2), + [anon_sym_LT_LT] = ACTIONS(4), + [anon_sym_GT_GT] = ACTIONS(4), + [anon_sym_PLUS] = ACTIONS(4), + [anon_sym_DASH] = ACTIONS(4), + [anon_sym_SLASH] = ACTIONS(4), + [anon_sym_PERCENT] = ACTIONS(4), + [anon_sym_DASH_DASH] = ACTIONS(2), + [anon_sym_PLUS_PLUS] = ACTIONS(2), + [anon_sym_sizeof] = ACTIONS(4), + [anon_sym_DOT] = ACTIONS(4), + [anon_sym_DASH_GT] = ACTIONS(2), + [sym_number_literal] = ACTIONS(2), + [anon_sym_SQUOTE] = ACTIONS(2), + [anon_sym_DQUOTE] = ACTIONS(2), + [sym_escape_sequence] = ACTIONS(2), + [sym_true] = ACTIONS(4), + [sym_false] = ACTIONS(4), + [sym_null] = ACTIONS(4), + [sym_identifier] = ACTIONS(4), + [sym_comment] = ACTIONS(2), }, [1] = { [sym_translation_unit] = STATE(34), @@ -5871,143 +5871,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(40), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [ts_builtin_sym_end] = ACTIONS(5), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(6), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(80), + [sym_comment] = ACTIONS(82), }, [2] = { [sym_string_literal] = STATE(44), - [anon_sym_DQUOTE] = ACTIONS(83), - [sym_system_lib_string] = ACTIONS(85), - [sym_comment] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(84), + [sym_system_lib_string] = ACTIONS(86), + [sym_comment] = ACTIONS(82), }, [3] = { - [sym_identifier] = ACTIONS(87), - [sym_comment] = ACTIONS(81), + [sym_identifier] = ACTIONS(88), + [sym_comment] = ACTIONS(82), }, [4] = { - [sym_preproc_arg] = ACTIONS(89), - [sym_comment] = ACTIONS(91), + [sym_preproc_arg] = ACTIONS(90), + [sym_comment] = ACTIONS(92), }, [5] = { - [sym_identifier] = ACTIONS(93), - [sym_comment] = ACTIONS(81), + [sym_identifier] = ACTIONS(94), + [sym_comment] = ACTIONS(82), }, [6] = { - [anon_sym_LF] = ACTIONS(95), - [sym_preproc_arg] = ACTIONS(97), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(96), + [sym_preproc_arg] = ACTIONS(98), + [sym_comment] = ACTIONS(92), }, [7] = { - [ts_builtin_sym_end] = ACTIONS(99), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(99), - [anon_sym_typedef] = ACTIONS(101), - [anon_sym_extern] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_LPAREN2] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_auto] = ACTIONS(101), - [anon_sym_register] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_const] = ACTIONS(101), - [anon_sym_restrict] = ACTIONS(101), - [anon_sym_volatile] = ACTIONS(101), - [anon_sym__Atomic] = ACTIONS(101), - [anon_sym_signed] = ACTIONS(101), - [anon_sym_unsigned] = ACTIONS(101), - [anon_sym_long] = ACTIONS(101), - [anon_sym_short] = ACTIONS(101), - [sym_primitive_type] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(101), - [anon_sym_struct] = ACTIONS(101), - [anon_sym_union] = ACTIONS(101), - [anon_sym_if] = ACTIONS(101), - [anon_sym_else] = ACTIONS(101), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_case] = ACTIONS(101), - [anon_sym_default] = ACTIONS(101), - [anon_sym_while] = ACTIONS(101), - [anon_sym_do] = ACTIONS(101), - [anon_sym_for] = ACTIONS(101), - [anon_sym_return] = ACTIONS(101), - [anon_sym_break] = ACTIONS(101), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [sym_number_literal] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(101), - [sym_false] = ACTIONS(101), - [sym_null] = ACTIONS(101), - [sym_identifier] = ACTIONS(101), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(102), + [sym_preproc_directive] = ACTIONS(102), + [anon_sym_SEMI] = ACTIONS(100), + [anon_sym_typedef] = ACTIONS(102), + [anon_sym_extern] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(100), + [anon_sym_RBRACE] = ACTIONS(100), + [anon_sym_LPAREN2] = ACTIONS(100), + [anon_sym_STAR] = ACTIONS(100), + [anon_sym_static] = ACTIONS(102), + [anon_sym_auto] = ACTIONS(102), + [anon_sym_register] = ACTIONS(102), + [anon_sym_inline] = ACTIONS(102), + [anon_sym_const] = ACTIONS(102), + [anon_sym_restrict] = ACTIONS(102), + [anon_sym_volatile] = ACTIONS(102), + [anon_sym__Atomic] = ACTIONS(102), + [anon_sym_signed] = ACTIONS(102), + [anon_sym_unsigned] = ACTIONS(102), + [anon_sym_long] = ACTIONS(102), + [anon_sym_short] = ACTIONS(102), + [sym_primitive_type] = ACTIONS(102), + [anon_sym_enum] = ACTIONS(102), + [anon_sym_struct] = ACTIONS(102), + [anon_sym_union] = ACTIONS(102), + [anon_sym_if] = ACTIONS(102), + [anon_sym_else] = ACTIONS(102), + [anon_sym_switch] = ACTIONS(102), + [anon_sym_case] = ACTIONS(102), + [anon_sym_default] = ACTIONS(102), + [anon_sym_while] = ACTIONS(102), + [anon_sym_do] = ACTIONS(102), + [anon_sym_for] = ACTIONS(102), + [anon_sym_return] = ACTIONS(102), + [anon_sym_break] = ACTIONS(102), + [anon_sym_continue] = ACTIONS(102), + [anon_sym_goto] = ACTIONS(102), + [anon_sym_AMP] = ACTIONS(100), + [anon_sym_BANG] = ACTIONS(100), + [anon_sym_TILDE] = ACTIONS(100), + [anon_sym_PLUS] = ACTIONS(102), + [anon_sym_DASH] = ACTIONS(102), + [anon_sym_DASH_DASH] = ACTIONS(100), + [anon_sym_PLUS_PLUS] = ACTIONS(100), + [anon_sym_sizeof] = ACTIONS(102), + [sym_number_literal] = ACTIONS(100), + [anon_sym_SQUOTE] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(100), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_identifier] = ACTIONS(102), + [sym_comment] = ACTIONS(82), }, [8] = { [sym_type_qualifier] = STATE(52), @@ -6019,43 +6020,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(51), [aux_sym_type_definition_repeat1] = STATE(52), [aux_sym_sized_type_specifier_repeat1] = STATE(53), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(103), - [anon_sym_unsigned] = ACTIONS(103), - [anon_sym_long] = ACTIONS(103), - [anon_sym_short] = ACTIONS(103), - [sym_primitive_type] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(104), + [anon_sym_unsigned] = ACTIONS(104), + [anon_sym_long] = ACTIONS(104), + [anon_sym_short] = ACTIONS(104), + [sym_primitive_type] = ACTIONS(106), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [9] = { [sym_string_literal] = STATE(54), - [anon_sym_extern] = ACTIONS(109), - [anon_sym_static] = ACTIONS(109), - [anon_sym_auto] = ACTIONS(109), - [anon_sym_register] = ACTIONS(109), - [anon_sym_inline] = ACTIONS(109), - [anon_sym_const] = ACTIONS(109), - [anon_sym_restrict] = ACTIONS(109), - [anon_sym_volatile] = ACTIONS(109), - [anon_sym__Atomic] = ACTIONS(109), - [anon_sym_signed] = ACTIONS(109), - [anon_sym_unsigned] = ACTIONS(109), - [anon_sym_long] = ACTIONS(109), - [anon_sym_short] = ACTIONS(109), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(109), - [anon_sym_union] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(110), + [anon_sym_static] = ACTIONS(110), + [anon_sym_auto] = ACTIONS(110), + [anon_sym_register] = ACTIONS(110), + [anon_sym_inline] = ACTIONS(110), + [anon_sym_const] = ACTIONS(110), + [anon_sym_restrict] = ACTIONS(110), + [anon_sym_volatile] = ACTIONS(110), + [anon_sym__Atomic] = ACTIONS(110), + [anon_sym_signed] = ACTIONS(110), + [anon_sym_unsigned] = ACTIONS(110), + [anon_sym_long] = ACTIONS(110), + [anon_sym_short] = ACTIONS(110), + [sym_primitive_type] = ACTIONS(110), + [anon_sym_enum] = ACTIONS(110), + [anon_sym_struct] = ACTIONS(110), + [anon_sym_union] = ACTIONS(110), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_identifier] = ACTIONS(110), + [sym_comment] = ACTIONS(82), }, [10] = { [sym_preproc_include] = STATE(60), @@ -6114,60 +6130,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(60), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(112), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [11] = { [sym_type_qualifier] = STATE(73), @@ -6201,36 +6218,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [12] = { [sym__expression] = STATE(75), @@ -6253,128 +6285,236 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [13] = { - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(149), - [anon_sym_extern] = ACTIONS(109), - [anon_sym_LPAREN2] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_static] = ACTIONS(109), - [anon_sym_auto] = ACTIONS(109), - [anon_sym_register] = ACTIONS(109), - [anon_sym_inline] = ACTIONS(109), - [anon_sym_const] = ACTIONS(109), - [anon_sym_restrict] = ACTIONS(109), - [anon_sym_volatile] = ACTIONS(109), - [anon_sym__Atomic] = ACTIONS(109), - [anon_sym_signed] = ACTIONS(109), - [anon_sym_unsigned] = ACTIONS(109), - [anon_sym_long] = ACTIONS(109), - [anon_sym_short] = ACTIONS(109), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(109), - [anon_sym_union] = ACTIONS(109), - [anon_sym_COLON] = ACTIONS(149), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_extern] = ACTIONS(110), + [anon_sym_LPAREN2] = ACTIONS(150), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_static] = ACTIONS(110), + [anon_sym_auto] = ACTIONS(110), + [anon_sym_register] = ACTIONS(110), + [anon_sym_inline] = ACTIONS(110), + [anon_sym_const] = ACTIONS(110), + [anon_sym_restrict] = ACTIONS(110), + [anon_sym_volatile] = ACTIONS(110), + [anon_sym__Atomic] = ACTIONS(110), + [anon_sym_signed] = ACTIONS(110), + [anon_sym_unsigned] = ACTIONS(110), + [anon_sym_long] = ACTIONS(110), + [anon_sym_short] = ACTIONS(110), + [sym_primitive_type] = ACTIONS(110), + [anon_sym_enum] = ACTIONS(110), + [anon_sym_struct] = ACTIONS(110), + [anon_sym_union] = ACTIONS(110), + [anon_sym_COLON] = ACTIONS(150), + [sym_identifier] = ACTIONS(110), + [sym_comment] = ACTIONS(82), }, [14] = { - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), - [anon_sym_LPAREN2] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_RBRACK] = ACTIONS(151), - [anon_sym_static] = ACTIONS(153), - [anon_sym_auto] = ACTIONS(153), - [anon_sym_register] = ACTIONS(153), - [anon_sym_inline] = ACTIONS(153), - [anon_sym_const] = ACTIONS(153), - [anon_sym_restrict] = ACTIONS(153), - [anon_sym_volatile] = ACTIONS(153), - [anon_sym__Atomic] = ACTIONS(153), - [anon_sym_signed] = ACTIONS(153), - [anon_sym_unsigned] = ACTIONS(153), - [anon_sym_long] = ACTIONS(153), - [anon_sym_short] = ACTIONS(153), - [sym_primitive_type] = ACTIONS(153), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_struct] = ACTIONS(153), - [anon_sym_union] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(151), - [anon_sym_sizeof] = ACTIONS(153), - [sym_number_literal] = ACTIONS(151), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_identifier] = ACTIONS(153), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_SEMI] = ACTIONS(152), + [anon_sym_extern] = ACTIONS(154), + [anon_sym_LPAREN2] = ACTIONS(152), + [anon_sym_STAR] = ACTIONS(152), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_RBRACK] = ACTIONS(152), + [anon_sym_static] = ACTIONS(154), + [anon_sym_auto] = ACTIONS(154), + [anon_sym_register] = ACTIONS(154), + [anon_sym_inline] = ACTIONS(154), + [anon_sym_const] = ACTIONS(154), + [anon_sym_restrict] = ACTIONS(154), + [anon_sym_volatile] = ACTIONS(154), + [anon_sym__Atomic] = ACTIONS(154), + [anon_sym_signed] = ACTIONS(154), + [anon_sym_unsigned] = ACTIONS(154), + [anon_sym_long] = ACTIONS(154), + [anon_sym_short] = ACTIONS(154), + [sym_primitive_type] = ACTIONS(154), + [anon_sym_enum] = ACTIONS(154), + [anon_sym_struct] = ACTIONS(154), + [anon_sym_union] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_AMP] = ACTIONS(152), + [anon_sym_BANG] = ACTIONS(152), + [anon_sym_TILDE] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(152), + [anon_sym_PLUS_PLUS] = ACTIONS(152), + [anon_sym_sizeof] = ACTIONS(154), + [sym_number_literal] = ACTIONS(152), + [anon_sym_SQUOTE] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(152), + [sym_true] = ACTIONS(154), + [sym_false] = ACTIONS(154), + [sym_null] = ACTIONS(154), + [sym_identifier] = ACTIONS(154), + [sym_comment] = ACTIONS(82), }, [15] = { [sym_enumerator_list] = STATE(78), - [anon_sym_LBRACE] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(158), + [sym_comment] = ACTIONS(82), }, [16] = { [sym_field_declaration_list] = STATE(81), - [anon_sym_LBRACE] = ACTIONS(159), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(162), + [sym_comment] = ACTIONS(82), }, [17] = { [sym_field_declaration_list] = STATE(83), - [anon_sym_LBRACE] = ACTIONS(159), - [sym_identifier] = ACTIONS(163), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(164), + [sym_comment] = ACTIONS(82), }, [18] = { [sym_parenthesized_expression] = STATE(85), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [19] = { [sym_parenthesized_expression] = STATE(87), - [anon_sym_LPAREN2] = ACTIONS(167), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(168), + [sym_comment] = ACTIONS(82), }, [20] = { [sym_parenthesized_expression] = STATE(88), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [21] = { [sym_compound_statement] = STATE(94), @@ -6410,39 +6550,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [22] = { - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(180), + [sym_comment] = ACTIONS(82), }, [23] = { [sym__expression] = STATE(103), @@ -6465,37 +6624,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(103), [sym_concatenated_string] = STATE(103), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_identifier] = ACTIONS(199), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(182), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(198), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_null] = ACTIONS(200), + [sym_identifier] = ACTIONS(200), + [sym_comment] = ACTIONS(82), }, [24] = { - [anon_sym_SEMI] = ACTIONS(201), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(202), + [sym_comment] = ACTIONS(82), }, [25] = { - [anon_sym_SEMI] = ACTIONS(203), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(204), + [sym_comment] = ACTIONS(82), }, [26] = { - [sym_identifier] = ACTIONS(205), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(206), + [sym_comment] = ACTIONS(82), }, [27] = { [sym__expression] = STATE(108), @@ -6518,24 +6731,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(108), [sym_concatenated_string] = STATE(108), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(210), + [sym_false] = ACTIONS(210), + [sym_null] = ACTIONS(210), + [sym_identifier] = ACTIONS(210), + [sym_comment] = ACTIONS(82), }, [28] = { [sym__expression] = STATE(109), @@ -6558,24 +6798,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(109), [sym_concatenated_string] = STATE(109), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(212), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_null] = ACTIONS(214), + [sym_identifier] = ACTIONS(214), + [sym_comment] = ACTIONS(82), }, [29] = { [sym__expression] = STATE(110), @@ -6598,24 +6865,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(110), [sym_concatenated_string] = STATE(110), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(216), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_null] = ACTIONS(218), + [sym_identifier] = ACTIONS(218), + [sym_comment] = ACTIONS(82), }, [30] = { [sym__expression] = STATE(112), @@ -6638,92 +6932,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(112), [sym_concatenated_string] = STATE(112), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(221), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_identifier] = ACTIONS(223), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(222), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(224), + [sym_false] = ACTIONS(224), + [sym_null] = ACTIONS(224), + [sym_identifier] = ACTIONS(224), + [sym_comment] = ACTIONS(82), }, [31] = { - [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(225), - [sym_escape_sequence] = ACTIONS(227), - [sym_comment] = ACTIONS(91), + [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(226), + [sym_escape_sequence] = ACTIONS(228), + [sym_comment] = ACTIONS(92), }, [32] = { [aux_sym_string_literal_repeat1] = STATE(115), - [anon_sym_DQUOTE] = ACTIONS(229), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(231), - [sym_escape_sequence] = ACTIONS(231), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(230), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(232), + [sym_escape_sequence] = ACTIONS(232), + [sym_comment] = ACTIONS(92), }, [33] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(235), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(236), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [34] = { - [ts_builtin_sym_end] = ACTIONS(251), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(252), + [sym_comment] = ACTIONS(82), }, [35] = { [sym__declarator] = STATE(121), @@ -6731,120 +7052,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(121), [sym_array_declarator] = STATE(121), [sym_init_declarator] = STATE(122), - [anon_sym_SEMI] = ACTIONS(253), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(254), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(260), + [sym_comment] = ACTIONS(82), }, [36] = { [sym_storage_class_specifier] = STATE(123), [sym_type_qualifier] = STATE(123), [aux_sym__declaration_specifiers_repeat1] = STATE(123), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(263), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(264), + [sym_comment] = ACTIONS(82), }, [37] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(279), - [anon_sym_SLASH_EQ] = ACTIONS(279), - [anon_sym_PERCENT_EQ] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(279), - [anon_sym_DASH_EQ] = ACTIONS(279), - [anon_sym_LT_LT_EQ] = ACTIONS(279), - [anon_sym_GT_GT_EQ] = ACTIONS(279), - [anon_sym_AMP_EQ] = ACTIONS(279), - [anon_sym_CARET_EQ] = ACTIONS(279), - [anon_sym_PIPE_EQ] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(278), + [anon_sym_STAR_EQ] = ACTIONS(280), + [anon_sym_SLASH_EQ] = ACTIONS(280), + [anon_sym_PERCENT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_LT_LT_EQ] = ACTIONS(280), + [anon_sym_GT_GT_EQ] = ACTIONS(280), + [anon_sym_AMP_EQ] = ACTIONS(280), + [anon_sym_CARET_EQ] = ACTIONS(280), + [anon_sym_PIPE_EQ] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [38] = { - [anon_sym_SEMI] = ACTIONS(267), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(268), + [sym_comment] = ACTIONS(82), }, [39] = { [sym_string_literal] = STATE(143), [aux_sym_concatenated_string_repeat1] = STATE(143), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [40] = { [sym_preproc_include] = STATE(144), @@ -6903,60 +7251,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(144), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [ts_builtin_sym_end] = ACTIONS(305), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(79), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(306), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(80), + [sym_comment] = ACTIONS(82), }, [41] = { [sym_storage_class_specifier] = STATE(146), @@ -6969,118 +7318,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(145), [aux_sym__declaration_specifiers_repeat1] = STATE(146), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(307), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [42] = { [aux_sym_sized_type_specifier_repeat1] = STATE(149), - [anon_sym_SEMI] = ACTIONS(309), - [anon_sym_extern] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(309), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_static] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(311), - [anon_sym_register] = ACTIONS(311), - [anon_sym_inline] = ACTIONS(311), - [anon_sym_const] = ACTIONS(311), - [anon_sym_restrict] = ACTIONS(311), - [anon_sym_volatile] = ACTIONS(311), - [anon_sym__Atomic] = ACTIONS(311), - [anon_sym_signed] = ACTIONS(313), - [anon_sym_unsigned] = ACTIONS(313), - [anon_sym_long] = ACTIONS(313), - [anon_sym_short] = ACTIONS(313), - [sym_primitive_type] = ACTIONS(315), - [sym_identifier] = ACTIONS(317), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_LPAREN2] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_static] = ACTIONS(312), + [anon_sym_auto] = ACTIONS(312), + [anon_sym_register] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_const] = ACTIONS(312), + [anon_sym_restrict] = ACTIONS(312), + [anon_sym_volatile] = ACTIONS(312), + [anon_sym__Atomic] = ACTIONS(312), + [anon_sym_signed] = ACTIONS(314), + [anon_sym_unsigned] = ACTIONS(314), + [anon_sym_long] = ACTIONS(314), + [anon_sym_short] = ACTIONS(314), + [sym_primitive_type] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(318), + [sym_comment] = ACTIONS(82), }, [43] = { [aux_sym_string_literal_repeat1] = STATE(151), - [anon_sym_DQUOTE] = ACTIONS(320), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(322), - [sym_escape_sequence] = ACTIONS(322), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(321), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(323), + [sym_escape_sequence] = ACTIONS(323), + [sym_comment] = ACTIONS(92), }, [44] = { - [ts_builtin_sym_end] = ACTIONS(324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(326), - [sym_preproc_directive] = ACTIONS(326), - [anon_sym_SEMI] = ACTIONS(324), - [anon_sym_typedef] = ACTIONS(326), - [anon_sym_extern] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(324), - [anon_sym_LPAREN2] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_static] = ACTIONS(326), - [anon_sym_auto] = ACTIONS(326), - [anon_sym_register] = ACTIONS(326), - [anon_sym_inline] = ACTIONS(326), - [anon_sym_const] = ACTIONS(326), - [anon_sym_restrict] = ACTIONS(326), - [anon_sym_volatile] = ACTIONS(326), - [anon_sym__Atomic] = ACTIONS(326), - [anon_sym_signed] = ACTIONS(326), - [anon_sym_unsigned] = ACTIONS(326), - [anon_sym_long] = ACTIONS(326), - [anon_sym_short] = ACTIONS(326), - [sym_primitive_type] = ACTIONS(326), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(326), - [anon_sym_union] = ACTIONS(326), - [anon_sym_if] = ACTIONS(326), - [anon_sym_switch] = ACTIONS(326), - [anon_sym_while] = ACTIONS(326), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(326), - [anon_sym_return] = ACTIONS(326), - [anon_sym_break] = ACTIONS(326), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_goto] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(324), - [anon_sym_sizeof] = ACTIONS(326), - [sym_number_literal] = ACTIONS(324), - [anon_sym_SQUOTE] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(324), - [sym_true] = ACTIONS(326), - [sym_false] = ACTIONS(326), - [sym_null] = ACTIONS(326), - [sym_identifier] = ACTIONS(326), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(325), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(327), + [sym_preproc_directive] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_typedef] = ACTIONS(327), + [anon_sym_extern] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_LPAREN2] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_static] = ACTIONS(327), + [anon_sym_auto] = ACTIONS(327), + [anon_sym_register] = ACTIONS(327), + [anon_sym_inline] = ACTIONS(327), + [anon_sym_const] = ACTIONS(327), + [anon_sym_restrict] = ACTIONS(327), + [anon_sym_volatile] = ACTIONS(327), + [anon_sym__Atomic] = ACTIONS(327), + [anon_sym_signed] = ACTIONS(327), + [anon_sym_unsigned] = ACTIONS(327), + [anon_sym_long] = ACTIONS(327), + [anon_sym_short] = ACTIONS(327), + [sym_primitive_type] = 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_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(325), + [anon_sym_SQUOTE] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [sym_true] = ACTIONS(327), + [sym_false] = ACTIONS(327), + [sym_null] = ACTIONS(327), + [sym_identifier] = ACTIONS(327), + [sym_comment] = ACTIONS(82), }, [45] = { [sym_preproc_params] = STATE(155), - [anon_sym_LF] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(330), - [sym_preproc_arg] = ACTIONS(332), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [sym_preproc_arg] = ACTIONS(333), + [sym_comment] = ACTIONS(92), }, [46] = { [sym_preproc_include] = STATE(182), @@ -7141,62 +7513,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(182), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [47] = { [sym_preproc_include] = STATE(185), @@ -7257,153 +7630,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(185), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(383), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(384), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(386), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_typedef] = ACTIONS(386), - [anon_sym_extern] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_LPAREN2] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_static] = ACTIONS(386), - [anon_sym_auto] = ACTIONS(386), - [anon_sym_register] = ACTIONS(386), - [anon_sym_inline] = ACTIONS(386), - [anon_sym_const] = ACTIONS(386), - [anon_sym_restrict] = ACTIONS(386), - [anon_sym_volatile] = ACTIONS(386), - [anon_sym__Atomic] = ACTIONS(386), - [anon_sym_signed] = ACTIONS(386), - [anon_sym_unsigned] = ACTIONS(386), - [anon_sym_long] = ACTIONS(386), - [anon_sym_short] = ACTIONS(386), - [sym_primitive_type] = ACTIONS(386), - [anon_sym_enum] = ACTIONS(386), - [anon_sym_struct] = ACTIONS(386), - [anon_sym_union] = ACTIONS(386), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(386), - [anon_sym_while] = ACTIONS(386), - [anon_sym_do] = ACTIONS(386), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(386), - [anon_sym_break] = ACTIONS(386), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_goto] = ACTIONS(386), - [anon_sym_AMP] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_DASH_DASH] = ACTIONS(384), - [anon_sym_PLUS_PLUS] = ACTIONS(384), - [anon_sym_sizeof] = ACTIONS(386), - [sym_number_literal] = ACTIONS(384), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [sym_true] = ACTIONS(386), - [sym_false] = ACTIONS(386), - [sym_null] = ACTIONS(386), - [sym_identifier] = ACTIONS(386), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(385), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(387), + [sym_preproc_directive] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_static] = ACTIONS(387), + [anon_sym_auto] = ACTIONS(387), + [anon_sym_register] = ACTIONS(387), + [anon_sym_inline] = ACTIONS(387), + [anon_sym_const] = ACTIONS(387), + [anon_sym_restrict] = ACTIONS(387), + [anon_sym_volatile] = ACTIONS(387), + [anon_sym__Atomic] = ACTIONS(387), + [anon_sym_signed] = ACTIONS(387), + [anon_sym_unsigned] = ACTIONS(387), + [anon_sym_long] = ACTIONS(387), + [anon_sym_short] = ACTIONS(387), + [sym_primitive_type] = ACTIONS(387), + [anon_sym_enum] = ACTIONS(387), + [anon_sym_struct] = ACTIONS(387), + [anon_sym_union] = ACTIONS(387), + [anon_sym_if] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(387), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(387), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(385), + [anon_sym_sizeof] = ACTIONS(387), + [sym_number_literal] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(385), + [sym_true] = ACTIONS(387), + [sym_false] = ACTIONS(387), + [sym_null] = ACTIONS(387), + [sym_identifier] = ACTIONS(387), + [sym_comment] = ACTIONS(82), }, [49] = { - [anon_sym_LF] = ACTIONS(388), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(389), + [sym_comment] = ACTIONS(92), }, [50] = { - [anon_sym_COMMA] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym_COLON] = ACTIONS(390), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [anon_sym_COLON] = ACTIONS(391), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [51] = { [sym__type_declarator] = STATE(190), [sym_pointer_type_declarator] = STATE(190), [sym_function_type_declarator] = STATE(190), [sym_array_type_declarator] = STATE(190), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [52] = { [sym_type_qualifier] = STATE(192), @@ -7415,32 +7816,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(191), [aux_sym_type_definition_repeat1] = STATE(192), [aux_sym_sized_type_specifier_repeat1] = STATE(53), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(103), - [anon_sym_unsigned] = ACTIONS(103), - [anon_sym_long] = ACTIONS(103), - [anon_sym_short] = ACTIONS(103), - [sym_primitive_type] = ACTIONS(401), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(104), + [anon_sym_unsigned] = ACTIONS(104), + [anon_sym_long] = ACTIONS(104), + [anon_sym_short] = ACTIONS(104), + [sym_primitive_type] = ACTIONS(402), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [53] = { [aux_sym_sized_type_specifier_repeat1] = STATE(193), - [anon_sym_LPAREN2] = ACTIONS(309), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_signed] = ACTIONS(403), - [anon_sym_unsigned] = ACTIONS(403), - [anon_sym_long] = ACTIONS(403), - [anon_sym_short] = ACTIONS(403), - [sym_primitive_type] = ACTIONS(315), - [sym_identifier] = ACTIONS(317), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(404), + [anon_sym_unsigned] = ACTIONS(404), + [anon_sym_long] = ACTIONS(404), + [anon_sym_short] = ACTIONS(404), + [sym_primitive_type] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(318), + [sym_comment] = ACTIONS(82), }, [54] = { [sym_function_definition] = STATE(195), @@ -7457,152 +7895,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(405), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(411), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(413), - [sym_preproc_directive] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_typedef] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LPAREN2] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_static] = ACTIONS(413), - [anon_sym_auto] = ACTIONS(413), - [anon_sym_register] = ACTIONS(413), - [anon_sym_inline] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_signed] = ACTIONS(413), - [anon_sym_unsigned] = ACTIONS(413), - [anon_sym_long] = ACTIONS(413), - [anon_sym_short] = ACTIONS(413), - [sym_primitive_type] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [anon_sym_if] = ACTIONS(413), - [anon_sym_else] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(413), - [anon_sym_case] = ACTIONS(413), - [anon_sym_default] = ACTIONS(413), - [anon_sym_while] = ACTIONS(413), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(413), - [anon_sym_return] = ACTIONS(413), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(411), - [anon_sym_PLUS_PLUS] = ACTIONS(411), - [anon_sym_sizeof] = ACTIONS(413), - [sym_number_literal] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_identifier] = ACTIONS(413), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(412), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(414), + [sym_preproc_directive] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_typedef] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_LPAREN2] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_static] = ACTIONS(414), + [anon_sym_auto] = ACTIONS(414), + [anon_sym_register] = ACTIONS(414), + [anon_sym_inline] = ACTIONS(414), + [anon_sym_const] = ACTIONS(414), + [anon_sym_restrict] = ACTIONS(414), + [anon_sym_volatile] = ACTIONS(414), + [anon_sym__Atomic] = ACTIONS(414), + [anon_sym_signed] = ACTIONS(414), + [anon_sym_unsigned] = ACTIONS(414), + [anon_sym_long] = ACTIONS(414), + [anon_sym_short] = ACTIONS(414), + [sym_primitive_type] = ACTIONS(414), + [anon_sym_enum] = ACTIONS(414), + [anon_sym_struct] = ACTIONS(414), + [anon_sym_union] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_else] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_case] = ACTIONS(414), + [anon_sym_default] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(414), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_sizeof] = ACTIONS(414), + [sym_number_literal] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_true] = ACTIONS(414), + [sym_false] = ACTIONS(414), + [sym_null] = ACTIONS(414), + [sym_identifier] = ACTIONS(414), + [sym_comment] = ACTIONS(82), }, [56] = { [sym_parenthesized_expression] = STATE(200), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [57] = { [sym_parenthesized_expression] = STATE(201), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [58] = { - [anon_sym_LPAREN2] = ACTIONS(415), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(416), + [sym_comment] = ACTIONS(82), }, [59] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(235), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(236), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [60] = { [sym_preproc_include] = STATE(205), @@ -7661,60 +8109,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [61] = { [sym_type_qualifier] = STATE(73), @@ -7748,36 +8197,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [62] = { [sym__expression] = STATE(75), @@ -7800,24 +8264,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [63] = { [sym__expression] = STATE(108), @@ -7840,24 +8331,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(108), [sym_concatenated_string] = STATE(108), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(210), + [sym_false] = ACTIONS(210), + [sym_null] = ACTIONS(210), + [sym_identifier] = ACTIONS(210), + [sym_comment] = ACTIONS(82), }, [64] = { [sym__expression] = STATE(109), @@ -7880,24 +8398,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(109), [sym_concatenated_string] = STATE(109), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(212), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_null] = ACTIONS(214), + [sym_identifier] = ACTIONS(214), + [sym_comment] = ACTIONS(82), }, [65] = { [sym__expression] = STATE(110), @@ -7920,24 +8465,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(110), [sym_concatenated_string] = STATE(110), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(216), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_null] = ACTIONS(218), + [sym_identifier] = ACTIONS(218), + [sym_comment] = ACTIONS(82), }, [66] = { [sym__expression] = STATE(208), @@ -7960,65 +8532,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(208), [sym_concatenated_string] = STATE(208), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(425), - [sym_false] = ACTIONS(425), - [sym_null] = ACTIONS(425), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(424), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_identifier] = ACTIONS(426), + [sym_comment] = ACTIONS(82), }, [67] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(235), - [anon_sym_LPAREN2] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_RPAREN] = ACTIONS(236), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(236), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [68] = { [sym__abstract_declarator] = STATE(212), @@ -8026,105 +8625,105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_function_declarator] = STATE(212), [sym_abstract_array_declarator] = STATE(212), [sym_parameter_list] = STATE(213), - [anon_sym_RPAREN] = ACTIONS(427), - [anon_sym_LPAREN2] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_LPAREN2] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [sym_comment] = ACTIONS(82), }, [69] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(437), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(438), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [70] = { - [anon_sym_RPAREN] = ACTIONS(437), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(438), + [sym_comment] = ACTIONS(82), }, [71] = { - [anon_sym_RPAREN] = ACTIONS(467), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(468), + [sym_comment] = ACTIONS(82), }, [72] = { [sym_string_literal] = STATE(229), [aux_sym_concatenated_string_repeat1] = STATE(229), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_RPAREN] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [73] = { [sym_type_qualifier] = STATE(192), @@ -8136,129 +8735,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(230), [aux_sym_type_definition_repeat1] = STATE(192), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(469), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(470), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [74] = { [aux_sym_sized_type_specifier_repeat1] = STATE(231), - [anon_sym_RPAREN] = ACTIONS(309), - [anon_sym_LPAREN2] = ACTIONS(309), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(309), - [anon_sym_signed] = ACTIONS(471), - [anon_sym_unsigned] = ACTIONS(471), - [anon_sym_long] = ACTIONS(471), - [anon_sym_short] = ACTIONS(471), - [sym_primitive_type] = ACTIONS(315), - [sym_identifier] = ACTIONS(473), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(472), + [anon_sym_unsigned] = ACTIONS(472), + [anon_sym_long] = ACTIONS(472), + [anon_sym_short] = ACTIONS(472), + [sym_primitive_type] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(474), + [sym_comment] = ACTIONS(82), }, [75] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(475), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_STAR_EQ] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(475), - [anon_sym_PERCENT_EQ] = ACTIONS(475), - [anon_sym_PLUS_EQ] = ACTIONS(475), - [anon_sym_DASH_EQ] = ACTIONS(475), - [anon_sym_LT_LT_EQ] = ACTIONS(475), - [anon_sym_GT_GT_EQ] = ACTIONS(475), - [anon_sym_AMP_EQ] = ACTIONS(475), - [anon_sym_CARET_EQ] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(475), - [anon_sym_BANG_EQ] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(475), - [anon_sym_GT_EQ] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_PERCENT] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(476), + [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [76] = { [sym_enumerator] = STATE(235), - [anon_sym_COMMA] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(480), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(484), + [sym_comment] = ACTIONS(82), }, [77] = { [sym_enumerator_list] = STATE(236), - [anon_sym_COMMA] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_static] = ACTIONS(487), - [anon_sym_auto] = ACTIONS(487), - [anon_sym_register] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym__Atomic] = ACTIONS(487), - [anon_sym_COLON] = ACTIONS(485), - [sym_identifier] = ACTIONS(487), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_extern] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_LPAREN2] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_auto] = ACTIONS(488), + [anon_sym_register] = ACTIONS(488), + [anon_sym_inline] = ACTIONS(488), + [anon_sym_const] = ACTIONS(488), + [anon_sym_restrict] = ACTIONS(488), + [anon_sym_volatile] = ACTIONS(488), + [anon_sym__Atomic] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [sym_comment] = ACTIONS(82), }, [78] = { - [anon_sym_COMMA] = ACTIONS(489), - [anon_sym_RPAREN] = ACTIONS(489), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_extern] = ACTIONS(491), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_auto] = ACTIONS(491), - [anon_sym_register] = ACTIONS(491), - [anon_sym_inline] = ACTIONS(491), - [anon_sym_const] = ACTIONS(491), - [anon_sym_restrict] = ACTIONS(491), - [anon_sym_volatile] = ACTIONS(491), - [anon_sym__Atomic] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(489), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_extern] = ACTIONS(492), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_static] = ACTIONS(492), + [anon_sym_auto] = ACTIONS(492), + [anon_sym_register] = ACTIONS(492), + [anon_sym_inline] = ACTIONS(492), + [anon_sym_const] = ACTIONS(492), + [anon_sym_restrict] = ACTIONS(492), + [anon_sym_volatile] = ACTIONS(492), + [anon_sym__Atomic] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), + [sym_comment] = ACTIONS(82), }, [79] = { [sym_preproc_if_in_field_declaration_list] = STATE(242), @@ -8277,113 +8940,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(242), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [80] = { [sym_field_declaration_list] = STATE(245), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(503), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_auto] = ACTIONS(505), - [anon_sym_register] = ACTIONS(505), - [anon_sym_inline] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_restrict] = ACTIONS(505), - [anon_sym_volatile] = ACTIONS(505), - [anon_sym__Atomic] = ACTIONS(505), - [anon_sym_COLON] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(504), + [anon_sym_RPAREN] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(504), + [anon_sym_extern] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LPAREN2] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(504), + [anon_sym_static] = ACTIONS(506), + [anon_sym_auto] = ACTIONS(506), + [anon_sym_register] = ACTIONS(506), + [anon_sym_inline] = ACTIONS(506), + [anon_sym_const] = ACTIONS(506), + [anon_sym_restrict] = ACTIONS(506), + [anon_sym_volatile] = ACTIONS(506), + [anon_sym__Atomic] = ACTIONS(506), + [anon_sym_COLON] = ACTIONS(504), + [sym_identifier] = ACTIONS(506), + [sym_comment] = ACTIONS(82), }, [81] = { - [anon_sym_COMMA] = ACTIONS(507), - [anon_sym_RPAREN] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(507), - [anon_sym_extern] = ACTIONS(509), - [anon_sym_LPAREN2] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_auto] = ACTIONS(509), - [anon_sym_register] = ACTIONS(509), - [anon_sym_inline] = ACTIONS(509), - [anon_sym_const] = ACTIONS(509), - [anon_sym_restrict] = ACTIONS(509), - [anon_sym_volatile] = ACTIONS(509), - [anon_sym__Atomic] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [sym_identifier] = ACTIONS(509), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_LPAREN2] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_static] = ACTIONS(510), + [anon_sym_auto] = ACTIONS(510), + [anon_sym_register] = ACTIONS(510), + [anon_sym_inline] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_restrict] = ACTIONS(510), + [anon_sym_volatile] = ACTIONS(510), + [anon_sym__Atomic] = ACTIONS(510), + [anon_sym_COLON] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [sym_comment] = ACTIONS(82), }, [82] = { [sym_field_declaration_list] = STATE(246), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_extern] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(511), - [anon_sym_STAR] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_auto] = ACTIONS(513), - [anon_sym_register] = ACTIONS(513), - [anon_sym_inline] = ACTIONS(513), - [anon_sym_const] = ACTIONS(513), - [anon_sym_restrict] = ACTIONS(513), - [anon_sym_volatile] = ACTIONS(513), - [anon_sym__Atomic] = ACTIONS(513), - [anon_sym_COLON] = ACTIONS(511), - [sym_identifier] = ACTIONS(513), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_extern] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LPAREN2] = ACTIONS(512), + [anon_sym_STAR] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_static] = ACTIONS(514), + [anon_sym_auto] = ACTIONS(514), + [anon_sym_register] = ACTIONS(514), + [anon_sym_inline] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_restrict] = ACTIONS(514), + [anon_sym_volatile] = ACTIONS(514), + [anon_sym__Atomic] = ACTIONS(514), + [anon_sym_COLON] = ACTIONS(512), + [sym_identifier] = ACTIONS(514), + [sym_comment] = ACTIONS(82), }, [83] = { - [anon_sym_COMMA] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_extern] = ACTIONS(517), - [anon_sym_LPAREN2] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(515), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_auto] = ACTIONS(517), - [anon_sym_register] = ACTIONS(517), - [anon_sym_inline] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_restrict] = ACTIONS(517), - [anon_sym_volatile] = ACTIONS(517), - [anon_sym__Atomic] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_extern] = ACTIONS(518), + [anon_sym_LPAREN2] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_auto] = ACTIONS(518), + [anon_sym_register] = ACTIONS(518), + [anon_sym_inline] = ACTIONS(518), + [anon_sym_const] = ACTIONS(518), + [anon_sym_restrict] = ACTIONS(518), + [anon_sym_volatile] = ACTIONS(518), + [anon_sym__Atomic] = ACTIONS(518), + [anon_sym_COLON] = ACTIONS(516), + [sym_identifier] = ACTIONS(518), + [sym_comment] = ACTIONS(82), }, [84] = { [sym__expression] = STATE(247), @@ -8407,24 +9080,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(247), [sym_concatenated_string] = STATE(247), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(519), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(521), - [sym_false] = ACTIONS(521), - [sym_null] = ACTIONS(521), - [sym_identifier] = ACTIONS(521), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(520), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(522), + [sym_false] = ACTIONS(522), + [sym_null] = ACTIONS(522), + [sym_identifier] = ACTIONS(522), + [sym_comment] = ACTIONS(82), }, [85] = { [sym_compound_statement] = STATE(253), @@ -8460,35 +9160,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [86] = { [sym__expression] = STATE(69), @@ -8512,29 +9231,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(69), [sym_concatenated_string] = STATE(69), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(142), + [sym_comment] = ACTIONS(82), }, [87] = { [sym_switch_body] = STATE(255), - [anon_sym_LBRACE] = ACTIONS(531), - [sym_comment] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(532), + [sym_comment] = ACTIONS(82), }, [88] = { [sym_compound_statement] = STATE(257), @@ -8570,45 +9316,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [89] = { [sym_parenthesized_expression] = STATE(258), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [90] = { [sym_parenthesized_expression] = STATE(259), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [91] = { [sym_compound_statement] = STATE(260), @@ -8644,85 +9409,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [92] = { - [anon_sym_LPAREN2] = ACTIONS(535), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(536), + [sym_comment] = ACTIONS(82), }, [93] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [94] = { - [anon_sym_while] = ACTIONS(539), - [sym_comment] = ACTIONS(81), + [anon_sym_while] = ACTIONS(540), + [sym_comment] = ACTIONS(82), }, [95] = { [sym_declaration] = STATE(264), @@ -8757,102 +9541,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(545), - [sym_false] = ACTIONS(545), - [sym_null] = ACTIONS(545), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(544), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(546), + [sym_false] = ACTIONS(546), + [sym_null] = ACTIONS(546), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [sym_preproc_directive] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_typedef] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_static] = ACTIONS(551), - [anon_sym_auto] = ACTIONS(551), - [anon_sym_register] = ACTIONS(551), - [anon_sym_inline] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_restrict] = ACTIONS(551), - [anon_sym_volatile] = ACTIONS(551), - [anon_sym__Atomic] = ACTIONS(551), - [anon_sym_signed] = ACTIONS(551), - [anon_sym_unsigned] = ACTIONS(551), - [anon_sym_long] = ACTIONS(551), - [anon_sym_short] = ACTIONS(551), - [sym_primitive_type] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_union] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_case] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_goto] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_sizeof] = ACTIONS(551), - [sym_number_literal] = ACTIONS(549), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_null] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(550), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(552), + [sym_preproc_directive] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_static] = ACTIONS(552), + [anon_sym_auto] = ACTIONS(552), + [anon_sym_register] = ACTIONS(552), + [anon_sym_inline] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_restrict] = ACTIONS(552), + [anon_sym_volatile] = ACTIONS(552), + [anon_sym__Atomic] = ACTIONS(552), + [anon_sym_signed] = ACTIONS(552), + [anon_sym_unsigned] = ACTIONS(552), + [anon_sym_long] = ACTIONS(552), + [anon_sym_short] = ACTIONS(552), + [sym_primitive_type] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_switch] = ACTIONS(552), + [anon_sym_case] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_do] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_goto] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_sizeof] = ACTIONS(552), + [sym_number_literal] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(550), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_null] = ACTIONS(552), + [sym_identifier] = ACTIONS(552), + [sym_comment] = ACTIONS(82), }, [97] = { [sym_type_qualifier] = STATE(73), @@ -8886,36 +9680,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [98] = { [sym__expression] = STATE(75), @@ -8938,24 +9747,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [99] = { [sym__expression] = STATE(108), @@ -8978,24 +9814,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(108), [sym_concatenated_string] = STATE(108), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(210), + [sym_false] = ACTIONS(210), + [sym_null] = ACTIONS(210), + [sym_identifier] = ACTIONS(210), + [sym_comment] = ACTIONS(82), }, [100] = { [sym__expression] = STATE(109), @@ -9018,24 +9881,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(109), [sym_concatenated_string] = STATE(109), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(212), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_null] = ACTIONS(214), + [sym_identifier] = ACTIONS(214), + [sym_comment] = ACTIONS(82), }, [101] = { [sym__expression] = STATE(110), @@ -9058,24 +9948,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(110), [sym_concatenated_string] = STATE(110), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(216), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_null] = ACTIONS(218), + [sym_identifier] = ACTIONS(218), + [sym_comment] = ACTIONS(82), }, [102] = { [sym__expression] = STATE(270), @@ -9098,370 +10015,397 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(270), [sym_concatenated_string] = STATE(270), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(555), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(557), - [sym_false] = ACTIONS(557), - [sym_null] = ACTIONS(557), - [sym_identifier] = ACTIONS(557), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(558), + [sym_false] = ACTIONS(558), + [sym_null] = ACTIONS(558), + [sym_identifier] = ACTIONS(558), + [sym_comment] = ACTIONS(82), }, [103] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [104] = { [sym_string_literal] = STATE(284), [aux_sym_concatenated_string_repeat1] = STATE(284), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [105] = { - [ts_builtin_sym_end] = ACTIONS(589), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(591), - [sym_preproc_directive] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_typedef] = ACTIONS(591), - [anon_sym_extern] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN2] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_static] = ACTIONS(591), - [anon_sym_auto] = ACTIONS(591), - [anon_sym_register] = ACTIONS(591), - [anon_sym_inline] = ACTIONS(591), - [anon_sym_const] = ACTIONS(591), - [anon_sym_restrict] = ACTIONS(591), - [anon_sym_volatile] = ACTIONS(591), - [anon_sym__Atomic] = ACTIONS(591), - [anon_sym_signed] = ACTIONS(591), - [anon_sym_unsigned] = ACTIONS(591), - [anon_sym_long] = ACTIONS(591), - [anon_sym_short] = ACTIONS(591), - [sym_primitive_type] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(591), - [anon_sym_union] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_switch] = ACTIONS(591), - [anon_sym_case] = ACTIONS(591), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_goto] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_sizeof] = ACTIONS(591), - [sym_number_literal] = ACTIONS(589), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DQUOTE] = ACTIONS(589), - [sym_true] = ACTIONS(591), - [sym_false] = ACTIONS(591), - [sym_null] = ACTIONS(591), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(590), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(592), + [sym_preproc_directive] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_typedef] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LPAREN2] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_static] = ACTIONS(592), + [anon_sym_auto] = ACTIONS(592), + [anon_sym_register] = ACTIONS(592), + [anon_sym_inline] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_restrict] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(592), + [anon_sym__Atomic] = ACTIONS(592), + [anon_sym_signed] = ACTIONS(592), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_else] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(592), + [anon_sym_case] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_goto] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(592), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(590), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_null] = ACTIONS(592), + [sym_identifier] = ACTIONS(592), + [sym_comment] = ACTIONS(82), }, [106] = { - [ts_builtin_sym_end] = ACTIONS(593), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(595), - [sym_preproc_directive] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_typedef] = ACTIONS(595), - [anon_sym_extern] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_static] = ACTIONS(595), - [anon_sym_auto] = ACTIONS(595), - [anon_sym_register] = ACTIONS(595), - [anon_sym_inline] = ACTIONS(595), - [anon_sym_const] = ACTIONS(595), - [anon_sym_restrict] = ACTIONS(595), - [anon_sym_volatile] = ACTIONS(595), - [anon_sym__Atomic] = ACTIONS(595), - [anon_sym_signed] = ACTIONS(595), - [anon_sym_unsigned] = ACTIONS(595), - [anon_sym_long] = ACTIONS(595), - [anon_sym_short] = ACTIONS(595), - [sym_primitive_type] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(595), - [anon_sym_union] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(595), - [anon_sym_case] = ACTIONS(595), - [anon_sym_default] = ACTIONS(595), - [anon_sym_while] = ACTIONS(595), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_sizeof] = ACTIONS(595), - [sym_number_literal] = ACTIONS(593), - [anon_sym_SQUOTE] = ACTIONS(593), - [anon_sym_DQUOTE] = ACTIONS(593), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_null] = ACTIONS(595), - [sym_identifier] = ACTIONS(595), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(594), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(596), + [sym_preproc_directive] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_typedef] = ACTIONS(596), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_static] = ACTIONS(596), + [anon_sym_auto] = ACTIONS(596), + [anon_sym_register] = ACTIONS(596), + [anon_sym_inline] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_restrict] = ACTIONS(596), + [anon_sym_volatile] = ACTIONS(596), + [anon_sym__Atomic] = ACTIONS(596), + [anon_sym_signed] = ACTIONS(596), + [anon_sym_unsigned] = ACTIONS(596), + [anon_sym_long] = ACTIONS(596), + [anon_sym_short] = ACTIONS(596), + [sym_primitive_type] = 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(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_null] = ACTIONS(596), + [sym_identifier] = ACTIONS(596), + [sym_comment] = ACTIONS(82), }, [107] = { - [anon_sym_SEMI] = ACTIONS(597), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(598), + [sym_comment] = ACTIONS(82), }, [108] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_DASH_EQ] = ACTIONS(599), - [anon_sym_LT_LT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_EQ] = ACTIONS(599), - [anon_sym_AMP_EQ] = ACTIONS(599), - [anon_sym_CARET_EQ] = ACTIONS(599), - [anon_sym_PIPE_EQ] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_COLON] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_DASH_DASH] = ACTIONS(600), + [anon_sym_PLUS_PLUS] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [109] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_RBRACE] = ACTIONS(603), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(603), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_COLON] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_DASH_EQ] = ACTIONS(603), - [anon_sym_LT_LT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_EQ] = ACTIONS(603), - [anon_sym_AMP_EQ] = ACTIONS(603), - [anon_sym_CARET_EQ] = ACTIONS(603), - [anon_sym_PIPE_EQ] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_RPAREN] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_COLON] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_DASH_DASH] = ACTIONS(604), + [anon_sym_PLUS_PLUS] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [110] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(609), - [anon_sym_DASH] = ACTIONS(609), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_PERCENT] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_COLON] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [111] = { [sym_type_qualifier] = STATE(73), @@ -9495,154 +10439,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [112] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(611), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [113] = { - [anon_sym_SQUOTE] = ACTIONS(615), - [sym_comment] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(616), + [sym_comment] = ACTIONS(82), }, [114] = { - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_extern] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN2] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_static] = ACTIONS(619), - [anon_sym_auto] = ACTIONS(619), - [anon_sym_register] = ACTIONS(619), - [anon_sym_inline] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_restrict] = ACTIONS(619), - [anon_sym_volatile] = ACTIONS(619), - [anon_sym__Atomic] = ACTIONS(619), - [anon_sym_signed] = ACTIONS(619), - [anon_sym_unsigned] = ACTIONS(619), - [anon_sym_long] = ACTIONS(619), - [anon_sym_short] = ACTIONS(619), - [sym_primitive_type] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(619), - [anon_sym_union] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_extern] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_LPAREN2] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(618), + [anon_sym_RBRACK] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(620), + [anon_sym_static] = ACTIONS(620), + [anon_sym_auto] = ACTIONS(620), + [anon_sym_register] = ACTIONS(620), + [anon_sym_inline] = ACTIONS(620), + [anon_sym_const] = ACTIONS(620), + [anon_sym_restrict] = ACTIONS(620), + [anon_sym_volatile] = ACTIONS(620), + [anon_sym__Atomic] = ACTIONS(620), + [anon_sym_signed] = ACTIONS(620), + [anon_sym_unsigned] = ACTIONS(620), + [anon_sym_long] = ACTIONS(620), + [anon_sym_short] = ACTIONS(620), + [sym_primitive_type] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(620), + [anon_sym_struct] = ACTIONS(620), + [anon_sym_union] = ACTIONS(620), + [anon_sym_COLON] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(618), + [anon_sym_STAR_EQ] = ACTIONS(618), + [anon_sym_SLASH_EQ] = ACTIONS(618), + [anon_sym_PERCENT_EQ] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(618), + [anon_sym_DASH_EQ] = ACTIONS(618), + [anon_sym_LT_LT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_EQ] = ACTIONS(618), + [anon_sym_AMP_EQ] = ACTIONS(618), + [anon_sym_CARET_EQ] = ACTIONS(618), + [anon_sym_PIPE_EQ] = ACTIONS(618), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_CARET] = ACTIONS(620), + [anon_sym_EQ_EQ] = ACTIONS(618), + [anon_sym_BANG_EQ] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(620), + [anon_sym_GT] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(618), + [anon_sym_GT_EQ] = ACTIONS(618), + [anon_sym_LT_LT] = ACTIONS(620), + [anon_sym_GT_GT] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(620), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_DASH_GT] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [sym_identifier] = ACTIONS(620), + [sym_comment] = ACTIONS(82), }, [115] = { [aux_sym_string_literal_repeat1] = STATE(289), - [anon_sym_DQUOTE] = ACTIONS(621), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(623), - [sym_escape_sequence] = ACTIONS(623), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(622), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(624), + [sym_escape_sequence] = ACTIONS(624), + [sym_comment] = ACTIONS(92), }, [116] = { [sym_type_qualifier] = STATE(73), @@ -9655,20 +10614,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [117] = { [sym_compound_statement] = STATE(291), @@ -9704,102 +10678,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_typedef] = ACTIONS(627), - [anon_sym_extern] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_LPAREN2] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_static] = ACTIONS(627), - [anon_sym_auto] = ACTIONS(627), - [anon_sym_register] = ACTIONS(627), - [anon_sym_inline] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_restrict] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(627), - [anon_sym__Atomic] = ACTIONS(627), - [anon_sym_signed] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(627), - [anon_sym_long] = ACTIONS(627), - [anon_sym_short] = ACTIONS(627), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_struct] = ACTIONS(627), - [anon_sym_union] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_while] = ACTIONS(627), - [anon_sym_do] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(627), - [sym_number_literal] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_null] = ACTIONS(627), - [sym_identifier] = ACTIONS(627), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(626), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(628), + [sym_preproc_directive] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_typedef] = ACTIONS(628), + [anon_sym_extern] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_LPAREN2] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_static] = ACTIONS(628), + [anon_sym_auto] = ACTIONS(628), + [anon_sym_register] = ACTIONS(628), + [anon_sym_inline] = ACTIONS(628), + [anon_sym_const] = ACTIONS(628), + [anon_sym_restrict] = ACTIONS(628), + [anon_sym_volatile] = ACTIONS(628), + [anon_sym__Atomic] = ACTIONS(628), + [anon_sym_signed] = ACTIONS(628), + [anon_sym_unsigned] = ACTIONS(628), + [anon_sym_long] = ACTIONS(628), + [anon_sym_short] = ACTIONS(628), + [sym_primitive_type] = ACTIONS(628), + [anon_sym_enum] = ACTIONS(628), + [anon_sym_struct] = ACTIONS(628), + [anon_sym_union] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_do] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(628), + [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(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_null] = ACTIONS(628), + [sym_identifier] = ACTIONS(628), + [sym_comment] = ACTIONS(82), }, [119] = { [sym__declarator] = STATE(293), [sym_pointer_declarator] = STATE(293), [sym_function_declarator] = STATE(293), [sym_array_declarator] = STATE(293), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(632), + [sym_comment] = ACTIONS(82), }, [120] = { [sym__declarator] = STATE(294), @@ -9808,51 +10828,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(294), [sym_type_qualifier] = STATE(295), [aux_sym_type_definition_repeat1] = STATE(295), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(633), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(634), + [sym_comment] = ACTIONS(82), }, [121] = { [sym_compound_statement] = STATE(301), [sym_parameter_list] = STATE(302), [aux_sym_declaration_repeat1] = STATE(303), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(643), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(644), + [sym_comment] = ACTIONS(82), }, [122] = { [aux_sym_declaration_repeat1] = STATE(303), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(637), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(638), + [sym_comment] = ACTIONS(82), }, [123] = { [sym_storage_class_specifier] = STATE(304), [sym_type_qualifier] = STATE(304), [aux_sym__declaration_specifiers_repeat1] = STATE(304), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [124] = { [sym__expression] = STATE(305), @@ -9876,84 +10919,111 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(305), [sym_concatenated_string] = STATE(305), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(649), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(651), - [sym_false] = ACTIONS(651), - [sym_null] = ACTIONS(651), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(652), + [sym_false] = ACTIONS(652), + [sym_null] = ACTIONS(652), + [sym_identifier] = ACTIONS(652), + [sym_comment] = ACTIONS(82), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(653), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(655), - [sym_preproc_directive] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_typedef] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_auto] = ACTIONS(655), - [anon_sym_register] = ACTIONS(655), - [anon_sym_inline] = ACTIONS(655), - [anon_sym_const] = ACTIONS(655), - [anon_sym_restrict] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym__Atomic] = ACTIONS(655), - [anon_sym_signed] = ACTIONS(655), - [anon_sym_unsigned] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [sym_primitive_type] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(655), - [anon_sym_union] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_case] = ACTIONS(655), - [anon_sym_default] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_goto] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(655), - [sym_number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_null] = ACTIONS(655), - [sym_identifier] = ACTIONS(655), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(656), + [sym_preproc_directive] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_typedef] = ACTIONS(656), + [anon_sym_extern] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(656), + [anon_sym_restrict] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym__Atomic] = ACTIONS(656), + [anon_sym_signed] = ACTIONS(656), + [anon_sym_unsigned] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [sym_primitive_type] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_struct] = ACTIONS(656), + [anon_sym_union] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_else] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(656), + [anon_sym_default] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_goto] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_sizeof] = ACTIONS(656), + [sym_number_literal] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_null] = ACTIONS(656), + [sym_identifier] = ACTIONS(656), + [sym_comment] = ACTIONS(82), }, [126] = { [sym__expression] = STATE(308), @@ -9976,25 +11046,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(308), [sym_concatenated_string] = STATE(308), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(659), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_identifier] = ACTIONS(661), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(662), + [sym_false] = ACTIONS(662), + [sym_null] = ACTIONS(662), + [sym_identifier] = ACTIONS(662), + [sym_comment] = ACTIONS(82), }, [127] = { [sym__expression] = STATE(309), @@ -10017,24 +11114,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(309), [sym_concatenated_string] = STATE(309), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_null] = ACTIONS(665), - [sym_identifier] = ACTIONS(665), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(664), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_null] = ACTIONS(666), + [sym_identifier] = ACTIONS(666), + [sym_comment] = ACTIONS(82), }, [128] = { [sym__expression] = STATE(316), @@ -10057,24 +11181,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(316), [sym_concatenated_string] = STATE(316), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(681), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [sym_identifier] = ACTIONS(683), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(682), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(684), + [sym_false] = ACTIONS(684), + [sym_null] = ACTIONS(684), + [sym_identifier] = ACTIONS(684), + [sym_comment] = ACTIONS(82), }, [129] = { [sym__expression] = STATE(318), @@ -10097,24 +11248,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(318), [sym_concatenated_string] = STATE(318), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_null] = ACTIONS(687), - [sym_identifier] = ACTIONS(687), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(688), + [sym_false] = ACTIONS(688), + [sym_null] = ACTIONS(688), + [sym_identifier] = ACTIONS(688), + [sym_comment] = ACTIONS(82), }, [130] = { [sym__expression] = STATE(325), @@ -10137,24 +11315,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(325), [sym_concatenated_string] = STATE(325), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(703), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(705), - [sym_false] = ACTIONS(705), - [sym_null] = ACTIONS(705), - [sym_identifier] = ACTIONS(705), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(704), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [sym_null] = ACTIONS(706), + [sym_identifier] = ACTIONS(706), + [sym_comment] = ACTIONS(82), }, [131] = { [sym__expression] = STATE(327), @@ -10177,24 +11382,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(327), [sym_concatenated_string] = STATE(327), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_null] = ACTIONS(709), - [sym_identifier] = ACTIONS(709), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(708), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_null] = ACTIONS(710), + [sym_identifier] = ACTIONS(710), + [sym_comment] = ACTIONS(82), }, [132] = { [sym__expression] = STATE(328), @@ -10217,24 +11449,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(328), [sym_concatenated_string] = STATE(328), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(711), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_null] = ACTIONS(713), - [sym_identifier] = ACTIONS(713), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(712), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(714), + [sym_false] = ACTIONS(714), + [sym_null] = ACTIONS(714), + [sym_identifier] = ACTIONS(714), + [sym_comment] = ACTIONS(82), }, [133] = { [sym__expression] = STATE(329), @@ -10257,24 +11516,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(329), [sym_concatenated_string] = STATE(329), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_null] = ACTIONS(717), - [sym_identifier] = ACTIONS(717), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_identifier] = ACTIONS(718), + [sym_comment] = ACTIONS(82), }, [134] = { [sym__expression] = STATE(330), @@ -10297,24 +11583,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(330), [sym_concatenated_string] = STATE(330), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(719), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_null] = ACTIONS(721), - [sym_identifier] = ACTIONS(721), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(720), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_null] = ACTIONS(722), + [sym_identifier] = ACTIONS(722), + [sym_comment] = ACTIONS(82), }, [135] = { [sym__expression] = STATE(331), @@ -10337,24 +11650,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(331), [sym_concatenated_string] = STATE(331), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(723), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_identifier] = ACTIONS(725), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(724), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_identifier] = ACTIONS(726), + [sym_comment] = ACTIONS(82), }, [136] = { [sym__expression] = STATE(332), @@ -10377,24 +11717,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(332), [sym_concatenated_string] = STATE(332), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(727), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_null] = ACTIONS(729), - [sym_identifier] = ACTIONS(729), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(728), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(730), + [sym_false] = ACTIONS(730), + [sym_null] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), + [sym_comment] = ACTIONS(82), }, [137] = { [sym__expression] = STATE(333), @@ -10417,24 +11784,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(333), [sym_concatenated_string] = STATE(333), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(731), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_null] = ACTIONS(733), - [sym_identifier] = ACTIONS(733), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(732), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(734), + [sym_false] = ACTIONS(734), + [sym_null] = ACTIONS(734), + [sym_identifier] = ACTIONS(734), + [sym_comment] = ACTIONS(82), }, [138] = { [sym__expression] = STATE(334), @@ -10457,24 +11851,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(334), [sym_concatenated_string] = STATE(334), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(737), - [sym_false] = ACTIONS(737), - [sym_null] = ACTIONS(737), - [sym_identifier] = ACTIONS(737), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [sym_identifier] = ACTIONS(738), + [sym_comment] = ACTIONS(82), }, [139] = { [sym__expression] = STATE(335), @@ -10497,162 +11918,216 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(335), [sym_concatenated_string] = STATE(335), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(739), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(741), - [sym_false] = ACTIONS(741), - [sym_null] = ACTIONS(741), - [sym_identifier] = ACTIONS(741), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_identifier] = ACTIONS(742), + [sym_comment] = ACTIONS(82), }, [140] = { - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN2] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(609), - [anon_sym_DASH] = ACTIONS(609), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_PERCENT] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(607), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LPAREN2] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_COLON] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(608), + [anon_sym_DASH_GT] = ACTIONS(608), + [sym_comment] = ACTIONS(82), }, [141] = { - [sym_identifier] = ACTIONS(743), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(744), + [sym_comment] = ACTIONS(82), }, [142] = { - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_STAR_EQ] = ACTIONS(745), - [anon_sym_SLASH_EQ] = ACTIONS(745), - [anon_sym_PERCENT_EQ] = ACTIONS(745), - [anon_sym_PLUS_EQ] = ACTIONS(745), - [anon_sym_DASH_EQ] = ACTIONS(745), - [anon_sym_LT_LT_EQ] = ACTIONS(745), - [anon_sym_GT_GT_EQ] = ACTIONS(745), - [anon_sym_AMP_EQ] = ACTIONS(745), - [anon_sym_CARET_EQ] = ACTIONS(745), - [anon_sym_PIPE_EQ] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_CARET] = ACTIONS(747), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_PERCENT] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_DASH_GT] = ACTIONS(745), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_LPAREN2] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(746), + [anon_sym_STAR_EQ] = ACTIONS(746), + [anon_sym_SLASH_EQ] = ACTIONS(746), + [anon_sym_PERCENT_EQ] = ACTIONS(746), + [anon_sym_PLUS_EQ] = ACTIONS(746), + [anon_sym_DASH_EQ] = ACTIONS(746), + [anon_sym_LT_LT_EQ] = ACTIONS(746), + [anon_sym_GT_GT_EQ] = ACTIONS(746), + [anon_sym_AMP_EQ] = ACTIONS(746), + [anon_sym_CARET_EQ] = ACTIONS(746), + [anon_sym_PIPE_EQ] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE_PIPE] = ACTIONS(746), + [anon_sym_AMP_AMP] = ACTIONS(746), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(746), + [anon_sym_BANG_EQ] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(746), + [anon_sym_LT_LT] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_DASH_GT] = ACTIONS(746), + [sym_comment] = ACTIONS(82), }, [143] = { [sym_string_literal] = STATE(337), [aux_sym_concatenated_string_repeat1] = STATE(337), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DASH_GT] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_STAR_EQ] = ACTIONS(750), + [anon_sym_SLASH_EQ] = ACTIONS(750), + [anon_sym_PERCENT_EQ] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [144] = { [sym_preproc_include] = STATE(144), @@ -10711,376 +12186,377 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(144), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [ts_builtin_sym_end] = ACTIONS(753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(755), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(761), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(764), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(764), - [sym_preproc_directive] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(773), - [anon_sym_extern] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_LPAREN2] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_static] = ACTIONS(788), - [anon_sym_auto] = ACTIONS(788), - [anon_sym_register] = ACTIONS(788), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_const] = ACTIONS(791), - [anon_sym_restrict] = ACTIONS(791), - [anon_sym_volatile] = ACTIONS(791), - [anon_sym__Atomic] = ACTIONS(791), - [anon_sym_signed] = ACTIONS(794), - [anon_sym_unsigned] = ACTIONS(794), - [anon_sym_long] = ACTIONS(794), - [anon_sym_short] = ACTIONS(794), - [sym_primitive_type] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(800), - [anon_sym_struct] = ACTIONS(803), - [anon_sym_union] = ACTIONS(806), - [anon_sym_if] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(812), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(818), - [anon_sym_for] = ACTIONS(821), - [anon_sym_return] = ACTIONS(824), - [anon_sym_break] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_goto] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_sizeof] = ACTIONS(848), - [sym_number_literal] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_null] = ACTIONS(860), - [sym_identifier] = ACTIONS(863), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(754), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(759), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(765), + [sym_preproc_directive] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_typedef] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_LPAREN2] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_static] = ACTIONS(789), + [anon_sym_auto] = ACTIONS(789), + [anon_sym_register] = ACTIONS(789), + [anon_sym_inline] = ACTIONS(789), + [anon_sym_const] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym__Atomic] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(795), + [anon_sym_unsigned] = ACTIONS(795), + [anon_sym_long] = ACTIONS(795), + [anon_sym_short] = ACTIONS(795), + [sym_primitive_type] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(801), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_union] = ACTIONS(807), + [anon_sym_if] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(816), + [anon_sym_do] = ACTIONS(819), + [anon_sym_for] = ACTIONS(822), + [anon_sym_return] = ACTIONS(825), + [anon_sym_break] = ACTIONS(828), + [anon_sym_continue] = ACTIONS(831), + [anon_sym_goto] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_sizeof] = ACTIONS(849), + [sym_number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_true] = ACTIONS(861), + [sym_false] = ACTIONS(861), + [sym_null] = ACTIONS(861), + [sym_identifier] = ACTIONS(864), + [sym_comment] = ACTIONS(82), }, [145] = { [sym_storage_class_specifier] = STATE(338), [sym_type_qualifier] = STATE(338), [aux_sym__declaration_specifiers_repeat1] = STATE(338), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [146] = { [sym_storage_class_specifier] = STATE(146), [sym_type_qualifier] = STATE(146), [aux_sym__declaration_specifiers_repeat1] = STATE(146), - [anon_sym_extern] = ACTIONS(866), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_const] = ACTIONS(869), - [anon_sym_restrict] = ACTIONS(869), - [anon_sym_volatile] = ACTIONS(869), - [anon_sym__Atomic] = ACTIONS(869), - [anon_sym_signed] = ACTIONS(872), - [anon_sym_unsigned] = ACTIONS(872), - [anon_sym_long] = ACTIONS(872), - [anon_sym_short] = ACTIONS(872), - [sym_primitive_type] = ACTIONS(872), - [anon_sym_enum] = ACTIONS(872), - [anon_sym_struct] = ACTIONS(872), - [anon_sym_union] = ACTIONS(872), - [sym_identifier] = ACTIONS(872), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_auto] = ACTIONS(867), + [anon_sym_register] = ACTIONS(867), + [anon_sym_inline] = ACTIONS(867), + [anon_sym_const] = ACTIONS(870), + [anon_sym_restrict] = ACTIONS(870), + [anon_sym_volatile] = ACTIONS(870), + [anon_sym__Atomic] = ACTIONS(870), + [anon_sym_signed] = ACTIONS(873), + [anon_sym_unsigned] = ACTIONS(873), + [anon_sym_long] = ACTIONS(873), + [anon_sym_short] = ACTIONS(873), + [sym_primitive_type] = ACTIONS(873), + [anon_sym_enum] = ACTIONS(873), + [anon_sym_struct] = ACTIONS(873), + [anon_sym_union] = ACTIONS(873), + [sym_identifier] = ACTIONS(873), + [sym_comment] = ACTIONS(82), }, [147] = { - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_LPAREN2] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_static] = ACTIONS(876), - [anon_sym_auto] = ACTIONS(876), - [anon_sym_register] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_restrict] = ACTIONS(876), - [anon_sym_volatile] = ACTIONS(876), - [anon_sym__Atomic] = ACTIONS(876), - [anon_sym_COLON] = ACTIONS(874), - [sym_identifier] = ACTIONS(876), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_LPAREN2] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_static] = ACTIONS(877), + [anon_sym_auto] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_inline] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_restrict] = ACTIONS(877), + [anon_sym_volatile] = ACTIONS(877), + [anon_sym__Atomic] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(875), + [sym_identifier] = ACTIONS(877), + [sym_comment] = ACTIONS(82), }, [148] = { - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_extern] = ACTIONS(880), - [anon_sym_LPAREN2] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(878), - [anon_sym_static] = ACTIONS(880), - [anon_sym_auto] = ACTIONS(880), - [anon_sym_register] = ACTIONS(880), - [anon_sym_inline] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_restrict] = ACTIONS(880), - [anon_sym_volatile] = ACTIONS(880), - [anon_sym__Atomic] = ACTIONS(880), - [anon_sym_COLON] = ACTIONS(878), - [sym_identifier] = ACTIONS(880), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_extern] = ACTIONS(881), + [anon_sym_LPAREN2] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_static] = ACTIONS(881), + [anon_sym_auto] = ACTIONS(881), + [anon_sym_register] = ACTIONS(881), + [anon_sym_inline] = ACTIONS(881), + [anon_sym_const] = ACTIONS(881), + [anon_sym_restrict] = ACTIONS(881), + [anon_sym_volatile] = ACTIONS(881), + [anon_sym__Atomic] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(879), + [sym_identifier] = ACTIONS(881), + [sym_comment] = ACTIONS(82), }, [149] = { [aux_sym_sized_type_specifier_repeat1] = STATE(149), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_static] = ACTIONS(884), - [anon_sym_auto] = ACTIONS(884), - [anon_sym_register] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym_signed] = ACTIONS(886), - [anon_sym_unsigned] = ACTIONS(886), - [anon_sym_long] = ACTIONS(886), - [anon_sym_short] = ACTIONS(886), - [sym_primitive_type] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_static] = ACTIONS(885), + [anon_sym_auto] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_inline] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(887), + [anon_sym_unsigned] = ACTIONS(887), + [anon_sym_long] = ACTIONS(887), + [anon_sym_short] = ACTIONS(887), + [sym_primitive_type] = ACTIONS(885), + [sym_identifier] = ACTIONS(885), + [sym_comment] = ACTIONS(82), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(619), - [sym_preproc_directive] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_typedef] = ACTIONS(619), - [anon_sym_extern] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN2] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_static] = ACTIONS(619), - [anon_sym_auto] = ACTIONS(619), - [anon_sym_register] = ACTIONS(619), - [anon_sym_inline] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_restrict] = ACTIONS(619), - [anon_sym_volatile] = ACTIONS(619), - [anon_sym__Atomic] = ACTIONS(619), - [anon_sym_signed] = ACTIONS(619), - [anon_sym_unsigned] = ACTIONS(619), - [anon_sym_long] = ACTIONS(619), - [anon_sym_short] = ACTIONS(619), - [sym_primitive_type] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(619), - [anon_sym_union] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_switch] = ACTIONS(619), - [anon_sym_while] = ACTIONS(619), - [anon_sym_do] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_sizeof] = ACTIONS(619), - [sym_number_literal] = ACTIONS(617), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_null] = ACTIONS(619), - [sym_identifier] = ACTIONS(619), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(618), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(620), + [sym_preproc_directive] = ACTIONS(620), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_typedef] = ACTIONS(620), + [anon_sym_extern] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_LPAREN2] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_static] = ACTIONS(620), + [anon_sym_auto] = ACTIONS(620), + [anon_sym_register] = ACTIONS(620), + [anon_sym_inline] = ACTIONS(620), + [anon_sym_const] = ACTIONS(620), + [anon_sym_restrict] = ACTIONS(620), + [anon_sym_volatile] = ACTIONS(620), + [anon_sym__Atomic] = ACTIONS(620), + [anon_sym_signed] = ACTIONS(620), + [anon_sym_unsigned] = ACTIONS(620), + [anon_sym_long] = ACTIONS(620), + [anon_sym_short] = ACTIONS(620), + [sym_primitive_type] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(620), + [anon_sym_struct] = ACTIONS(620), + [anon_sym_union] = ACTIONS(620), + [anon_sym_if] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(620), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(620), + [anon_sym_return] = ACTIONS(620), + [anon_sym_break] = ACTIONS(620), + [anon_sym_continue] = ACTIONS(620), + [anon_sym_goto] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [sym_true] = ACTIONS(620), + [sym_false] = ACTIONS(620), + [sym_null] = ACTIONS(620), + [sym_identifier] = ACTIONS(620), + [sym_comment] = ACTIONS(82), }, [151] = { [aux_sym_string_literal_repeat1] = STATE(289), - [anon_sym_DQUOTE] = ACTIONS(889), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(623), - [sym_escape_sequence] = ACTIONS(623), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(890), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(624), + [sym_escape_sequence] = ACTIONS(624), + [sym_comment] = ACTIONS(92), }, [152] = { - [ts_builtin_sym_end] = ACTIONS(891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(893), - [sym_preproc_directive] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_typedef] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LPAREN2] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_static] = ACTIONS(893), - [anon_sym_auto] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_inline] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [anon_sym_restrict] = ACTIONS(893), - [anon_sym_volatile] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(893), - [anon_sym_signed] = ACTIONS(893), - [anon_sym_unsigned] = ACTIONS(893), - [anon_sym_long] = ACTIONS(893), - [anon_sym_short] = ACTIONS(893), - [sym_primitive_type] = ACTIONS(893), - [anon_sym_enum] = ACTIONS(893), - [anon_sym_struct] = ACTIONS(893), - [anon_sym_union] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_switch] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_goto] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_sizeof] = ACTIONS(893), - [sym_number_literal] = ACTIONS(891), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_true] = ACTIONS(893), - [sym_false] = ACTIONS(893), - [sym_null] = ACTIONS(893), - [sym_identifier] = ACTIONS(893), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(892), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), + [sym_identifier] = ACTIONS(894), + [sym_comment] = ACTIONS(82), }, [153] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(897), - [sym_identifier] = ACTIONS(895), - [sym_comment] = ACTIONS(81), + [anon_sym_DOT_DOT_DOT] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(898), + [sym_identifier] = ACTIONS(896), + [sym_comment] = ACTIONS(82), }, [154] = { - [anon_sym_LF] = ACTIONS(899), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(900), + [sym_comment] = ACTIONS(92), }, [155] = { - [anon_sym_LF] = ACTIONS(901), - [sym_preproc_arg] = ACTIONS(903), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(902), + [sym_preproc_arg] = ACTIONS(904), + [sym_comment] = ACTIONS(92), }, [156] = { [sym_string_literal] = STATE(346), - [anon_sym_DQUOTE] = ACTIONS(905), - [sym_system_lib_string] = ACTIONS(907), - [sym_comment] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_system_lib_string] = ACTIONS(908), + [sym_comment] = ACTIONS(82), }, [157] = { - [sym_identifier] = ACTIONS(909), - [sym_comment] = ACTIONS(81), + [sym_identifier] = ACTIONS(910), + [sym_comment] = ACTIONS(82), }, [158] = { - [sym_preproc_arg] = ACTIONS(911), - [sym_comment] = ACTIONS(91), + [sym_preproc_arg] = ACTIONS(912), + [sym_comment] = ACTIONS(92), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(913), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(915), - [sym_preproc_directive] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_typedef] = ACTIONS(915), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_static] = ACTIONS(915), - [anon_sym_auto] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_inline] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_restrict] = ACTIONS(915), - [anon_sym_volatile] = ACTIONS(915), - [anon_sym__Atomic] = ACTIONS(915), - [anon_sym_signed] = ACTIONS(915), - [anon_sym_unsigned] = ACTIONS(915), - [anon_sym_long] = ACTIONS(915), - [anon_sym_short] = ACTIONS(915), - [sym_primitive_type] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_goto] = ACTIONS(915), - [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(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(913), - [sym_true] = ACTIONS(915), - [sym_false] = ACTIONS(915), - [sym_null] = ACTIONS(915), - [sym_identifier] = ACTIONS(915), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(914), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_static] = ACTIONS(916), + [anon_sym_auto] = ACTIONS(916), + [anon_sym_register] = ACTIONS(916), + [anon_sym_inline] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_unsigned] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [sym_primitive_type] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_sizeof] = ACTIONS(916), + [sym_number_literal] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), + [sym_identifier] = ACTIONS(916), + [sym_comment] = ACTIONS(82), }, [160] = { - [sym_identifier] = ACTIONS(917), - [sym_comment] = ACTIONS(81), + [sym_identifier] = ACTIONS(918), + [sym_comment] = ACTIONS(82), }, [161] = { [sym_preproc_include] = STATE(372), @@ -11139,128 +12615,129 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(372), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(921), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(923), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(925), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(927), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(927), - [sym_preproc_directive] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_typedef] = ACTIONS(933), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(920), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(926), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [sym_comment] = ACTIONS(82), }, [162] = { - [sym_preproc_arg] = ACTIONS(963), - [sym_comment] = ACTIONS(91), + [sym_preproc_arg] = ACTIONS(964), + [sym_comment] = ACTIONS(92), }, [163] = { - [anon_sym_LF] = ACTIONS(965), - [sym_preproc_arg] = ACTIONS(967), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(966), + [sym_preproc_arg] = ACTIONS(968), + [sym_comment] = ACTIONS(92), }, [164] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(99), - [anon_sym_typedef] = ACTIONS(101), - [anon_sym_extern] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_LPAREN2] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_auto] = ACTIONS(101), - [anon_sym_register] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_const] = ACTIONS(101), - [anon_sym_restrict] = ACTIONS(101), - [anon_sym_volatile] = ACTIONS(101), - [anon_sym__Atomic] = ACTIONS(101), - [anon_sym_signed] = ACTIONS(101), - [anon_sym_unsigned] = ACTIONS(101), - [anon_sym_long] = ACTIONS(101), - [anon_sym_short] = ACTIONS(101), - [sym_primitive_type] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(101), - [anon_sym_struct] = ACTIONS(101), - [anon_sym_union] = ACTIONS(101), - [anon_sym_if] = ACTIONS(101), - [anon_sym_else] = ACTIONS(101), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_while] = ACTIONS(101), - [anon_sym_do] = ACTIONS(101), - [anon_sym_for] = ACTIONS(101), - [anon_sym_return] = ACTIONS(101), - [anon_sym_break] = ACTIONS(101), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [sym_number_literal] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(101), - [sym_false] = ACTIONS(101), - [sym_null] = ACTIONS(101), - [sym_identifier] = ACTIONS(101), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(102), + [sym_preproc_directive] = ACTIONS(102), + [anon_sym_SEMI] = ACTIONS(100), + [anon_sym_typedef] = ACTIONS(102), + [anon_sym_extern] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(100), + [anon_sym_LPAREN2] = ACTIONS(100), + [anon_sym_STAR] = ACTIONS(100), + [anon_sym_static] = ACTIONS(102), + [anon_sym_auto] = ACTIONS(102), + [anon_sym_register] = ACTIONS(102), + [anon_sym_inline] = ACTIONS(102), + [anon_sym_const] = ACTIONS(102), + [anon_sym_restrict] = ACTIONS(102), + [anon_sym_volatile] = ACTIONS(102), + [anon_sym__Atomic] = ACTIONS(102), + [anon_sym_signed] = ACTIONS(102), + [anon_sym_unsigned] = ACTIONS(102), + [anon_sym_long] = ACTIONS(102), + [anon_sym_short] = ACTIONS(102), + [sym_primitive_type] = ACTIONS(102), + [anon_sym_enum] = ACTIONS(102), + [anon_sym_struct] = ACTIONS(102), + [anon_sym_union] = ACTIONS(102), + [anon_sym_if] = ACTIONS(102), + [anon_sym_else] = ACTIONS(102), + [anon_sym_switch] = ACTIONS(102), + [anon_sym_while] = ACTIONS(102), + [anon_sym_do] = ACTIONS(102), + [anon_sym_for] = ACTIONS(102), + [anon_sym_return] = ACTIONS(102), + [anon_sym_break] = ACTIONS(102), + [anon_sym_continue] = ACTIONS(102), + [anon_sym_goto] = ACTIONS(102), + [anon_sym_AMP] = ACTIONS(100), + [anon_sym_BANG] = ACTIONS(100), + [anon_sym_TILDE] = ACTIONS(100), + [anon_sym_PLUS] = ACTIONS(102), + [anon_sym_DASH] = ACTIONS(102), + [anon_sym_DASH_DASH] = ACTIONS(100), + [anon_sym_PLUS_PLUS] = ACTIONS(100), + [anon_sym_sizeof] = ACTIONS(102), + [sym_number_literal] = ACTIONS(100), + [anon_sym_SQUOTE] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(100), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_identifier] = ACTIONS(102), + [sym_comment] = ACTIONS(82), }, [165] = { [sym_type_qualifier] = STATE(377), @@ -11272,43 +12749,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(376), [aux_sym_type_definition_repeat1] = STATE(377), [aux_sym_sized_type_specifier_repeat1] = STATE(53), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(103), - [anon_sym_unsigned] = ACTIONS(103), - [anon_sym_long] = ACTIONS(103), - [anon_sym_short] = ACTIONS(103), - [sym_primitive_type] = ACTIONS(969), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(104), + [anon_sym_unsigned] = ACTIONS(104), + [anon_sym_long] = ACTIONS(104), + [anon_sym_short] = ACTIONS(104), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [166] = { [sym_string_literal] = STATE(378), - [anon_sym_extern] = ACTIONS(109), - [anon_sym_static] = ACTIONS(109), - [anon_sym_auto] = ACTIONS(109), - [anon_sym_register] = ACTIONS(109), - [anon_sym_inline] = ACTIONS(109), - [anon_sym_const] = ACTIONS(109), - [anon_sym_restrict] = ACTIONS(109), - [anon_sym_volatile] = ACTIONS(109), - [anon_sym__Atomic] = ACTIONS(109), - [anon_sym_signed] = ACTIONS(109), - [anon_sym_unsigned] = ACTIONS(109), - [anon_sym_long] = ACTIONS(109), - [anon_sym_short] = ACTIONS(109), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(109), - [anon_sym_union] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(110), + [anon_sym_static] = ACTIONS(110), + [anon_sym_auto] = ACTIONS(110), + [anon_sym_register] = ACTIONS(110), + [anon_sym_inline] = ACTIONS(110), + [anon_sym_const] = ACTIONS(110), + [anon_sym_restrict] = ACTIONS(110), + [anon_sym_volatile] = ACTIONS(110), + [anon_sym__Atomic] = ACTIONS(110), + [anon_sym_signed] = ACTIONS(110), + [anon_sym_unsigned] = ACTIONS(110), + [anon_sym_long] = ACTIONS(110), + [anon_sym_short] = ACTIONS(110), + [sym_primitive_type] = ACTIONS(110), + [anon_sym_enum] = ACTIONS(110), + [anon_sym_struct] = ACTIONS(110), + [anon_sym_union] = ACTIONS(110), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_identifier] = ACTIONS(110), + [sym_comment] = ACTIONS(82), }, [167] = { [sym_preproc_include] = STATE(380), @@ -11367,75 +12859,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(380), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [168] = { [sym_parenthesized_expression] = STATE(381), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [169] = { [sym_parenthesized_expression] = STATE(382), - [anon_sym_LPAREN2] = ACTIONS(167), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(168), + [sym_comment] = ACTIONS(82), }, [170] = { [sym_parenthesized_expression] = STATE(383), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [171] = { [sym_compound_statement] = STATE(384), @@ -11471,39 +12964,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [172] = { - [anon_sym_LPAREN2] = ACTIONS(973), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(974), + [sym_comment] = ACTIONS(82), }, [173] = { [sym__expression] = STATE(387), @@ -11526,93 +13038,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(387), [sym_concatenated_string] = STATE(387), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(979), - [sym_false] = ACTIONS(979), - [sym_null] = ACTIONS(979), - [sym_identifier] = ACTIONS(979), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), + [sym_comment] = ACTIONS(82), }, [174] = { - [anon_sym_SEMI] = ACTIONS(981), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(982), + [sym_comment] = ACTIONS(82), }, [175] = { - [anon_sym_SEMI] = ACTIONS(983), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(984), + [sym_comment] = ACTIONS(82), }, [176] = { - [sym_identifier] = ACTIONS(985), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(986), + [sym_comment] = ACTIONS(82), }, [177] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(235), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym_COLON] = ACTIONS(987), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(236), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [anon_sym_COLON] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [178] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(989), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(990), + [sym_comment] = ACTIONS(82), }, [179] = { [sym__declarator] = STATE(394), @@ -11620,57 +13186,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(394), [sym_array_declarator] = STATE(394), [sym_init_declarator] = STATE(395), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [sym_identifier] = ACTIONS(993), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(994), + [sym_comment] = ACTIONS(82), }, [180] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(279), - [anon_sym_SLASH_EQ] = ACTIONS(279), - [anon_sym_PERCENT_EQ] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(279), - [anon_sym_DASH_EQ] = ACTIONS(279), - [anon_sym_LT_LT_EQ] = ACTIONS(279), - [anon_sym_GT_GT_EQ] = ACTIONS(279), - [anon_sym_AMP_EQ] = ACTIONS(279), - [anon_sym_CARET_EQ] = ACTIONS(279), - [anon_sym_PIPE_EQ] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(278), + [anon_sym_STAR_EQ] = ACTIONS(280), + [anon_sym_SLASH_EQ] = ACTIONS(280), + [anon_sym_PERCENT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_LT_LT_EQ] = ACTIONS(280), + [anon_sym_GT_GT_EQ] = ACTIONS(280), + [anon_sym_AMP_EQ] = ACTIONS(280), + [anon_sym_CARET_EQ] = ACTIONS(280), + [anon_sym_PIPE_EQ] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [181] = { - [anon_sym_SEMI] = ACTIONS(995), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(996), + [sym_comment] = ACTIONS(82), }, [182] = { [sym_preproc_include] = STATE(398), @@ -11731,123 +13324,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(997), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(998), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(999), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1001), - [sym_preproc_directive] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_typedef] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_LPAREN2] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_auto] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_inline] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_restrict] = ACTIONS(1001), - [anon_sym_volatile] = ACTIONS(1001), - [anon_sym__Atomic] = ACTIONS(1001), - [anon_sym_signed] = ACTIONS(1001), - [anon_sym_unsigned] = ACTIONS(1001), - [anon_sym_long] = ACTIONS(1001), - [anon_sym_short] = ACTIONS(1001), - [sym_primitive_type] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_goto] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_sizeof] = ACTIONS(1001), - [sym_number_literal] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_identifier] = ACTIONS(1001), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1000), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1002), + [sym_preproc_directive] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_typedef] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1002), + [anon_sym_auto] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_inline] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_restrict] = ACTIONS(1002), + [anon_sym_volatile] = ACTIONS(1002), + [anon_sym__Atomic] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(1002), + [anon_sym_unsigned] = ACTIONS(1002), + [anon_sym_long] = ACTIONS(1002), + [anon_sym_short] = ACTIONS(1002), + [sym_primitive_type] = ACTIONS(1002), + [anon_sym_enum] = ACTIONS(1002), + [anon_sym_struct] = ACTIONS(1002), + [anon_sym_union] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_switch] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_sizeof] = ACTIONS(1002), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1002), + [sym_false] = ACTIONS(1002), + [sym_null] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1002), + [sym_comment] = ACTIONS(82), }, [184] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1003), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1004), + [sym_comment] = ACTIONS(82), }, [185] = { [sym_preproc_include] = STATE(398), @@ -11908,129 +13502,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1006), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(1007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1009), - [sym_preproc_directive] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_auto] = ACTIONS(1009), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_inline] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_restrict] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1009), - [anon_sym_signed] = ACTIONS(1009), - [anon_sym_unsigned] = ACTIONS(1009), - [anon_sym_long] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [sym_primitive_type] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_goto] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1009), - [sym_number_literal] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym_true] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [sym_null] = ACTIONS(1009), - [sym_identifier] = ACTIONS(1009), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1008), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1010), + [sym_preproc_directive] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_typedef] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_auto] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_inline] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_restrict] = ACTIONS(1010), + [anon_sym_volatile] = ACTIONS(1010), + [anon_sym__Atomic] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(1010), + [anon_sym_unsigned] = ACTIONS(1010), + [anon_sym_long] = ACTIONS(1010), + [anon_sym_short] = ACTIONS(1010), + [sym_primitive_type] = ACTIONS(1010), + [anon_sym_enum] = ACTIONS(1010), + [anon_sym_struct] = ACTIONS(1010), + [anon_sym_union] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_goto] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_sizeof] = ACTIONS(1010), + [sym_number_literal] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym_true] = ACTIONS(1010), + [sym_false] = ACTIONS(1010), + [sym_null] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1010), + [sym_comment] = ACTIONS(82), }, [187] = { [sym__type_declarator] = STATE(402), [sym_pointer_type_declarator] = STATE(402), [sym_function_type_declarator] = STATE(402), [sym_array_type_declarator] = STATE(402), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(1011), - [sym_identifier] = ACTIONS(399), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [188] = { [sym__type_declarator] = STATE(403), @@ -12039,68 +13661,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(403), [sym_type_qualifier] = STATE(404), [aux_sym_type_definition_repeat1] = STATE(404), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1013), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [189] = { - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_LPAREN2] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [sym_comment] = ACTIONS(82), }, [190] = { [sym_parameter_list] = STATE(407), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [191] = { [sym__type_declarator] = STATE(408), [sym_pointer_type_declarator] = STATE(408), [sym_function_type_declarator] = STATE(408), [sym_array_type_declarator] = STATE(408), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [192] = { [sym_type_qualifier] = STATE(192), [aux_sym_type_definition_repeat1] = STATE(192), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_restrict] = ACTIONS(1021), - [anon_sym_volatile] = ACTIONS(1021), - [anon_sym__Atomic] = ACTIONS(1021), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [sym_identifier] = ACTIONS(1024), - [sym_comment] = ACTIONS(81), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1023), + [anon_sym_unsigned] = ACTIONS(1023), + [anon_sym_long] = ACTIONS(1023), + [anon_sym_short] = ACTIONS(1023), + [sym_primitive_type] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_union] = ACTIONS(1023), + [sym_identifier] = ACTIONS(1023), + [sym_comment] = ACTIONS(82), }, [193] = { [aux_sym_sized_type_specifier_repeat1] = STATE(193), - [anon_sym_LPAREN2] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_signed] = ACTIONS(1026), - [anon_sym_unsigned] = ACTIONS(1026), - [anon_sym_long] = ACTIONS(1026), - [anon_sym_short] = ACTIONS(1026), - [sym_primitive_type] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_signed] = ACTIONS(1025), + [anon_sym_unsigned] = ACTIONS(1025), + [anon_sym_long] = ACTIONS(1025), + [anon_sym_short] = ACTIONS(1025), + [sym_primitive_type] = ACTIONS(885), + [sym_identifier] = ACTIONS(885), + [sym_comment] = ACTIONS(82), }, [194] = { [sym_preproc_include] = STATE(410), @@ -12159,117 +13831,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(410), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [195] = { - [ts_builtin_sym_end] = ACTIONS(1031), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1033), - [sym_preproc_directive] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_typedef] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_LPAREN2] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_auto] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_inline] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_restrict] = ACTIONS(1033), - [anon_sym_volatile] = ACTIONS(1033), - [anon_sym__Atomic] = ACTIONS(1033), - [anon_sym_signed] = ACTIONS(1033), - [anon_sym_unsigned] = ACTIONS(1033), - [anon_sym_long] = ACTIONS(1033), - [anon_sym_short] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_switch] = 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(1031), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [sym_null] = ACTIONS(1033), - [sym_identifier] = ACTIONS(1033), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1030), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_identifier] = ACTIONS(1032), + [sym_comment] = ACTIONS(82), }, [196] = { [sym__declarator] = STATE(121), @@ -12277,28 +13950,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(121), [sym_array_declarator] = STATE(121), [sym_init_declarator] = STATE(122), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [sym_identifier] = ACTIONS(259), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(260), + [sym_comment] = ACTIONS(82), }, [197] = { [sym_storage_class_specifier] = STATE(411), [sym_type_qualifier] = STATE(411), [aux_sym__declaration_specifiers_repeat1] = STATE(411), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(263), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(264), + [sym_comment] = ACTIONS(82), }, [198] = { [sym_storage_class_specifier] = STATE(146), @@ -12311,46 +14011,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(412), [aux_sym__declaration_specifiers_repeat1] = STATE(146), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(1035), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [199] = { [aux_sym_sized_type_specifier_repeat1] = STATE(413), - [anon_sym_extern] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(309), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_static] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(311), - [anon_sym_register] = ACTIONS(311), - [anon_sym_inline] = ACTIONS(311), - [anon_sym_const] = ACTIONS(311), - [anon_sym_restrict] = ACTIONS(311), - [anon_sym_volatile] = ACTIONS(311), - [anon_sym__Atomic] = ACTIONS(311), - [anon_sym_signed] = ACTIONS(1037), - [anon_sym_unsigned] = ACTIONS(1037), - [anon_sym_long] = ACTIONS(1037), - [anon_sym_short] = ACTIONS(1037), - [sym_primitive_type] = ACTIONS(315), - [sym_identifier] = ACTIONS(317), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_LPAREN2] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_static] = ACTIONS(312), + [anon_sym_auto] = ACTIONS(312), + [anon_sym_register] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_const] = ACTIONS(312), + [anon_sym_restrict] = ACTIONS(312), + [anon_sym_volatile] = ACTIONS(312), + [anon_sym__Atomic] = ACTIONS(312), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(318), + [sym_comment] = ACTIONS(82), }, [200] = { [sym_compound_statement] = STATE(418), @@ -12386,35 +14109,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [201] = { [sym_compound_statement] = STATE(257), @@ -12450,35 +14192,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [202] = { [sym_declaration] = STATE(420), @@ -12513,42 +14274,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [203] = { [sym_compound_statement] = STATE(291), @@ -12584,95 +14355,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [204] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1057), - [sym_preproc_directive] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_typedef] = ACTIONS(1057), - [anon_sym_extern] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_auto] = ACTIONS(1057), - [anon_sym_register] = ACTIONS(1057), - [anon_sym_inline] = ACTIONS(1057), - [anon_sym_const] = ACTIONS(1057), - [anon_sym_restrict] = ACTIONS(1057), - [anon_sym_volatile] = ACTIONS(1057), - [anon_sym__Atomic] = ACTIONS(1057), - [anon_sym_signed] = ACTIONS(1057), - [anon_sym_unsigned] = ACTIONS(1057), - [anon_sym_long] = ACTIONS(1057), - [anon_sym_short] = ACTIONS(1057), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [anon_sym_struct] = ACTIONS(1057), - [anon_sym_union] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(1057), - [anon_sym_default] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_goto] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_sizeof] = ACTIONS(1057), - [sym_number_literal] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1057), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1054), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [sym_comment] = ACTIONS(82), }, [205] = { [sym_preproc_include] = STATE(205), @@ -12731,64 +14521,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(755), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(761), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(764), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(764), - [sym_preproc_directive] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(773), - [anon_sym_extern] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_LPAREN2] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_static] = ACTIONS(788), - [anon_sym_auto] = ACTIONS(788), - [anon_sym_register] = ACTIONS(788), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_const] = ACTIONS(791), - [anon_sym_restrict] = ACTIONS(791), - [anon_sym_volatile] = ACTIONS(791), - [anon_sym__Atomic] = ACTIONS(791), - [anon_sym_signed] = ACTIONS(794), - [anon_sym_unsigned] = ACTIONS(794), - [anon_sym_long] = ACTIONS(794), - [anon_sym_short] = ACTIONS(794), - [sym_primitive_type] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(800), - [anon_sym_struct] = ACTIONS(803), - [anon_sym_union] = ACTIONS(806), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_switch] = ACTIONS(812), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(818), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(824), - [anon_sym_break] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_goto] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_sizeof] = ACTIONS(848), - [sym_number_literal] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_null] = ACTIONS(860), - [sym_identifier] = ACTIONS(1068), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(756), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(759), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(765), + [sym_preproc_directive] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_typedef] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_LPAREN2] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_static] = ACTIONS(789), + [anon_sym_auto] = ACTIONS(789), + [anon_sym_register] = ACTIONS(789), + [anon_sym_inline] = ACTIONS(789), + [anon_sym_const] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym__Atomic] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(795), + [anon_sym_unsigned] = ACTIONS(795), + [anon_sym_long] = ACTIONS(795), + [anon_sym_short] = ACTIONS(795), + [sym_primitive_type] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(801), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_union] = ACTIONS(807), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_switch] = ACTIONS(813), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(819), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(825), + [anon_sym_break] = ACTIONS(828), + [anon_sym_continue] = ACTIONS(831), + [anon_sym_goto] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_sizeof] = ACTIONS(849), + [sym_number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_true] = ACTIONS(861), + [sym_false] = ACTIONS(861), + [sym_null] = ACTIONS(861), + [sym_identifier] = ACTIONS(1067), + [sym_comment] = ACTIONS(82), }, [206] = { - [anon_sym_RPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1070), + [sym_comment] = ACTIONS(82), }, [207] = { [sym_type_qualifier] = STATE(73), @@ -12822,78 +14613,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [208] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [209] = { [sym__declaration_specifiers] = STATE(426), @@ -12913,30 +14719,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(428), [aux_sym__declaration_specifiers_repeat1] = STATE(429), [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(1077), - [anon_sym_unsigned] = ACTIONS(1077), - [anon_sym_long] = ACTIONS(1077), - [anon_sym_short] = ACTIONS(1077), - [sym_primitive_type] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [210] = { [sym__abstract_declarator] = STATE(431), @@ -12946,15 +14762,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(432), [sym_parameter_list] = STATE(213), [aux_sym_type_definition_repeat1] = STATE(432), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_LPAREN2] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_const] = ACTIONS(1083), - [anon_sym_restrict] = ACTIONS(1083), - [anon_sym_volatile] = ACTIONS(1083), - [anon_sym__Atomic] = ACTIONS(1083), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [sym_comment] = ACTIONS(82), }, [211] = { [sym_type_qualifier] = STATE(436), @@ -12979,43 +14795,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(435), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(436), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - [sym_null] = ACTIONS(1091), - [sym_identifier] = ACTIONS(1091), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1090), + [sym_false] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1090), + [sym_comment] = ACTIONS(82), }, [212] = { [sym_parameter_list] = STATE(438), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1094), + [sym_comment] = ACTIONS(82), }, [213] = { - [anon_sym_COMMA] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_LPAREN2] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1097), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1096), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1096), + [sym_comment] = ACTIONS(82), }, [214] = { [sym__expression] = STATE(439), @@ -13039,72 +14878,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(439), [sym_concatenated_string] = STATE(439), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1099), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1101), - [sym_false] = ACTIONS(1101), - [sym_null] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1101), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1100), + [sym_comment] = ACTIONS(82), }, [215] = { - [anon_sym_COMMA] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_LPAREN2] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(1103), - [anon_sym_EQ] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1103), - [anon_sym_else] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_QMARK] = ACTIONS(1103), - [anon_sym_STAR_EQ] = ACTIONS(1103), - [anon_sym_SLASH_EQ] = ACTIONS(1103), - [anon_sym_PERCENT_EQ] = ACTIONS(1103), - [anon_sym_PLUS_EQ] = ACTIONS(1103), - [anon_sym_DASH_EQ] = ACTIONS(1103), - [anon_sym_LT_LT_EQ] = ACTIONS(1103), - [anon_sym_GT_GT_EQ] = ACTIONS(1103), - [anon_sym_AMP_EQ] = ACTIONS(1103), - [anon_sym_CARET_EQ] = ACTIONS(1103), - [anon_sym_PIPE_EQ] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1103), - [anon_sym_AMP_AMP] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_EQ_EQ] = ACTIONS(1103), - [anon_sym_BANG_EQ] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1103), - [anon_sym_GT_EQ] = ACTIONS(1103), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_DASH_GT] = ACTIONS(1103), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_RBRACK] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_COLON] = ACTIONS(1102), + [anon_sym_else] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1102), + [anon_sym_STAR_EQ] = ACTIONS(1102), + [anon_sym_SLASH_EQ] = ACTIONS(1102), + [anon_sym_PERCENT_EQ] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1102), + [anon_sym_DASH_EQ] = ACTIONS(1102), + [anon_sym_LT_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_GT_EQ] = ACTIONS(1102), + [anon_sym_AMP_EQ] = ACTIONS(1102), + [anon_sym_CARET_EQ] = ACTIONS(1102), + [anon_sym_PIPE_EQ] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_CARET] = ACTIONS(1104), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1104), + [anon_sym_PERCENT] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DOT] = ACTIONS(1102), + [anon_sym_DASH_GT] = ACTIONS(1102), + [sym_comment] = ACTIONS(82), }, [216] = { [sym__expression] = STATE(309), @@ -13127,24 +14993,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(309), [sym_concatenated_string] = STATE(309), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_null] = ACTIONS(665), - [sym_identifier] = ACTIONS(665), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(664), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_null] = ACTIONS(666), + [sym_identifier] = ACTIONS(666), + [sym_comment] = ACTIONS(82), }, [217] = { [sym__expression] = STATE(440), @@ -13167,24 +15060,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(440), [sym_concatenated_string] = STATE(440), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1109), - [sym_false] = ACTIONS(1109), - [sym_null] = ACTIONS(1109), - [sym_identifier] = ACTIONS(1109), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1108), + [sym_comment] = ACTIONS(82), }, [218] = { [sym__expression] = STATE(441), @@ -13207,24 +15127,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(441), [sym_concatenated_string] = STATE(441), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_null] = ACTIONS(1113), - [sym_identifier] = ACTIONS(1113), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1112), + [sym_comment] = ACTIONS(82), }, [219] = { [sym__expression] = STATE(442), @@ -13247,24 +15194,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(442), [sym_concatenated_string] = STATE(442), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1115), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_null] = ACTIONS(1117), - [sym_identifier] = ACTIONS(1117), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1116), + [sym_comment] = ACTIONS(82), }, [220] = { [sym__expression] = STATE(443), @@ -13287,24 +15261,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(443), [sym_concatenated_string] = STATE(443), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1121), - [sym_false] = ACTIONS(1121), - [sym_null] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1121), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1120), + [sym_comment] = ACTIONS(82), }, [221] = { [sym__expression] = STATE(444), @@ -13327,24 +15328,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(444), [sym_concatenated_string] = STATE(444), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1125), - [sym_false] = ACTIONS(1125), - [sym_null] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1125), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1124), + [sym_comment] = ACTIONS(82), }, [222] = { [sym__expression] = STATE(445), @@ -13367,24 +15395,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(445), [sym_concatenated_string] = STATE(445), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1129), - [sym_false] = ACTIONS(1129), - [sym_null] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1129), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1128), + [sym_comment] = ACTIONS(82), }, [223] = { [sym__expression] = STATE(446), @@ -13407,24 +15462,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(446), [sym_concatenated_string] = STATE(446), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1133), - [sym_false] = ACTIONS(1133), - [sym_null] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1133), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), + [sym_comment] = ACTIONS(82), }, [224] = { [sym__expression] = STATE(447), @@ -13447,24 +15529,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(447), [sym_concatenated_string] = STATE(447), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1137), - [sym_false] = ACTIONS(1137), - [sym_null] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1136), + [sym_comment] = ACTIONS(82), }, [225] = { [sym__expression] = STATE(448), @@ -13487,24 +15596,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(448), [sym_concatenated_string] = STATE(448), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1141), - [sym_false] = ACTIONS(1141), - [sym_null] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1141), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1140), + [sym_false] = ACTIONS(1140), + [sym_null] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1140), + [sym_comment] = ACTIONS(82), }, [226] = { [sym__expression] = STATE(449), @@ -13527,24 +15663,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(449), [sym_concatenated_string] = STATE(449), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [sym_null] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1145), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1144), + [sym_false] = ACTIONS(1144), + [sym_null] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1144), + [sym_comment] = ACTIONS(82), }, [227] = { [sym__expression] = STATE(450), @@ -13567,24 +15730,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(450), [sym_concatenated_string] = STATE(450), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1149), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1148), + [sym_false] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1148), + [sym_comment] = ACTIONS(82), }, [228] = { [sym__expression] = STATE(452), @@ -13608,69 +15798,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(39), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [229] = { [sym_string_literal] = STATE(454), [aux_sym_concatenated_string_repeat1] = STATE(454), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DASH_GT] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_STAR_EQ] = ACTIONS(750), + [anon_sym_SLASH_EQ] = ACTIONS(750), + [anon_sym_PERCENT_EQ] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [230] = { [sym__abstract_declarator] = STATE(455), @@ -13678,109 +15895,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_function_declarator] = STATE(455), [sym_abstract_array_declarator] = STATE(455), [sym_parameter_list] = STATE(213), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [sym_comment] = ACTIONS(82), }, [231] = { [aux_sym_sized_type_specifier_repeat1] = STATE(231), - [anon_sym_RPAREN] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(882), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(883), + [anon_sym_LPAREN2] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_signed] = ACTIONS(1156), + [anon_sym_unsigned] = ACTIONS(1156), + [anon_sym_long] = ACTIONS(1156), + [anon_sym_short] = ACTIONS(1156), + [sym_primitive_type] = ACTIONS(885), + [sym_identifier] = ACTIONS(885), + [sym_comment] = ACTIONS(82), }, [232] = { - [anon_sym_RBRACE] = ACTIONS(1160), - [sym_comment] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(1159), + [sym_comment] = ACTIONS(82), }, [233] = { - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_LPAREN2] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_auto] = ACTIONS(1164), - [anon_sym_register] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_restrict] = ACTIONS(1164), - [anon_sym_volatile] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(1164), - [anon_sym_COLON] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1161), + [anon_sym_RPAREN] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym_COLON] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1163), + [sym_comment] = ACTIONS(82), }, [234] = { - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_EQ] = ACTIONS(1168), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_EQ] = ACTIONS(1167), + [sym_comment] = ACTIONS(82), }, [235] = { [aux_sym_enumerator_list_repeat1] = STATE(459), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1160), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1159), + [sym_comment] = ACTIONS(82), }, [236] = { - [anon_sym_COMMA] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym_LPAREN2] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1174), - [anon_sym_inline] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_COLON] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1174), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym_LPAREN2] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1171), + [sym_identifier] = ACTIONS(1173), + [sym_comment] = ACTIONS(82), }, [237] = { - [sym_preproc_arg] = ACTIONS(1176), - [sym_comment] = ACTIONS(91), + [sym_preproc_arg] = ACTIONS(1175), + [sym_comment] = ACTIONS(92), }, [238] = { - [sym_identifier] = ACTIONS(1178), - [sym_comment] = ACTIONS(81), + [sym_identifier] = ACTIONS(1177), + [sym_comment] = ACTIONS(82), }, [239] = { - [anon_sym_COMMA] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_auto] = ACTIONS(1182), - [anon_sym_register] = ACTIONS(1182), - [anon_sym_inline] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_restrict] = ACTIONS(1182), - [anon_sym_volatile] = ACTIONS(1182), - [anon_sym__Atomic] = ACTIONS(1182), - [anon_sym_COLON] = ACTIONS(1180), - [sym_identifier] = ACTIONS(1182), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1179), + [sym_identifier] = ACTIONS(1181), + [sym_comment] = ACTIONS(82), }, [240] = { [sym__field_declarator] = STATE(467), @@ -13788,32 +16005,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_field_declarator] = STATE(467), [sym_array_field_declarator] = STATE(467), [sym_bitfield_clause] = STATE(468), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1191), + [sym_comment] = ACTIONS(82), }, [241] = { [sym_storage_class_specifier] = STATE(469), [sym_type_qualifier] = STATE(469), [aux_sym__declaration_specifiers_repeat1] = STATE(469), - [anon_sym_SEMI] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(261), - [sym_identifier] = ACTIONS(263), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_COLON] = ACTIONS(262), + [sym_identifier] = ACTIONS(264), + [sym_comment] = ACTIONS(82), }, [242] = { [sym_preproc_if_in_field_declaration_list] = STATE(471), @@ -13832,29 +16076,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(471), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [243] = { [sym_storage_class_specifier] = STATE(146), @@ -13867,247 +16121,270 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(472), [aux_sym__declaration_specifiers_repeat1] = STATE(146), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [244] = { [aux_sym_sized_type_specifier_repeat1] = STATE(473), - [anon_sym_SEMI] = ACTIONS(309), - [anon_sym_extern] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(309), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_static] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(311), - [anon_sym_register] = ACTIONS(311), - [anon_sym_inline] = ACTIONS(311), - [anon_sym_const] = ACTIONS(311), - [anon_sym_restrict] = ACTIONS(311), - [anon_sym_volatile] = ACTIONS(311), - [anon_sym__Atomic] = ACTIONS(311), - [anon_sym_signed] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [sym_primitive_type] = ACTIONS(315), - [anon_sym_COLON] = ACTIONS(309), - [sym_identifier] = ACTIONS(317), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_LPAREN2] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_static] = ACTIONS(312), + [anon_sym_auto] = ACTIONS(312), + [anon_sym_register] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_const] = ACTIONS(312), + [anon_sym_restrict] = ACTIONS(312), + [anon_sym_volatile] = ACTIONS(312), + [anon_sym__Atomic] = ACTIONS(312), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(318), + [sym_comment] = ACTIONS(82), }, [245] = { - [anon_sym_COMMA] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym_LPAREN2] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_auto] = ACTIONS(1202), - [anon_sym_register] = ACTIONS(1202), - [anon_sym_inline] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_restrict] = ACTIONS(1202), - [anon_sym_volatile] = ACTIONS(1202), - [anon_sym__Atomic] = ACTIONS(1202), - [anon_sym_COLON] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1202), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_RPAREN] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1201), + [sym_comment] = ACTIONS(82), }, [246] = { - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_auto] = ACTIONS(1206), - [anon_sym_register] = ACTIONS(1206), - [anon_sym_inline] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_restrict] = ACTIONS(1206), - [anon_sym_volatile] = ACTIONS(1206), - [anon_sym__Atomic] = ACTIONS(1206), - [anon_sym_COLON] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1206), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1205), + [anon_sym_auto] = ACTIONS(1205), + [anon_sym_register] = ACTIONS(1205), + [anon_sym_inline] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [anon_sym_COLON] = ACTIONS(1203), + [sym_identifier] = ACTIONS(1205), + [sym_comment] = ACTIONS(82), }, [247] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [248] = { - [anon_sym_RPAREN] = ACTIONS(1208), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1207), + [sym_comment] = ACTIONS(82), }, [249] = { [sym_parenthesized_expression] = STATE(475), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [250] = { [sym_parenthesized_expression] = STATE(476), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [251] = { - [anon_sym_LPAREN2] = ACTIONS(1210), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1209), + [sym_comment] = ACTIONS(82), }, [252] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [254] = { [sym_compound_statement] = STATE(487), @@ -14145,200 +16422,218 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), [aux_sym_switch_body_repeat1] = STATE(487), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [sym_null] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1236), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1233), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [sym_null] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1235), + [sym_comment] = ACTIONS(82), }, [256] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [sym_null] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1237), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [sym_null] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1239), + [sym_comment] = ACTIONS(82), }, [258] = { [sym_compound_statement] = STATE(492), @@ -14374,35 +16669,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [259] = { [sym_compound_statement] = STATE(257), @@ -14438,39 +16752,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [260] = { - [anon_sym_while] = ACTIONS(1250), - [sym_comment] = ACTIONS(81), + [anon_sym_while] = ACTIONS(1249), + [sym_comment] = ACTIONS(82), }, [261] = { [sym_declaration] = STATE(494), @@ -14505,42 +16838,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [sym_null] = ACTIONS(1256), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [sym_null] = ACTIONS(1255), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [262] = { [sym_compound_statement] = STATE(291), @@ -14576,40 +16919,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [263] = { [sym_parenthesized_expression] = STATE(496), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [264] = { [sym__expression] = STATE(498), @@ -14632,75 +16994,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(498), [sym_concatenated_string] = STATE(498), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [sym_null] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1262), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1261), + [sym_false] = ACTIONS(1261), + [sym_null] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1261), + [sym_comment] = ACTIONS(82), }, [265] = { - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [266] = { [sym__declarator] = STATE(500), @@ -14708,55 +17097,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(500), [sym_array_declarator] = STATE(500), [sym_init_declarator] = STATE(122), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1265), + [sym_comment] = ACTIONS(82), }, [267] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [268] = { - [anon_sym_RPAREN] = ACTIONS(1270), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(82), }, [269] = { [sym_type_qualifier] = STATE(73), @@ -14790,137 +17206,152 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [270] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(611), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1274), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1271), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym__Atomic] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_sizeof] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [sym_comment] = ACTIONS(82), }, [272] = { [sym__expression] = STATE(309), @@ -14943,24 +17374,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(309), [sym_concatenated_string] = STATE(309), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_null] = ACTIONS(665), - [sym_identifier] = ACTIONS(665), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(664), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_null] = ACTIONS(666), + [sym_identifier] = ACTIONS(666), + [sym_comment] = ACTIONS(82), }, [273] = { [sym__expression] = STATE(504), @@ -14983,24 +17441,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(504), [sym_concatenated_string] = STATE(504), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [sym_null] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1278), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(82), }, [274] = { [sym__expression] = STATE(505), @@ -15023,24 +17508,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(505), [sym_concatenated_string] = STATE(505), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1282), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1281), + [sym_false] = ACTIONS(1281), + [sym_null] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1281), + [sym_comment] = ACTIONS(82), }, [275] = { [sym__expression] = STATE(506), @@ -15063,24 +17575,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(506), [sym_concatenated_string] = STATE(506), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [sym_null] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1286), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1285), + [sym_false] = ACTIONS(1285), + [sym_null] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(82), }, [276] = { [sym__expression] = STATE(507), @@ -15103,24 +17642,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(507), [sym_concatenated_string] = STATE(507), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1290), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1289), + [sym_false] = ACTIONS(1289), + [sym_null] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1289), + [sym_comment] = ACTIONS(82), }, [277] = { [sym__expression] = STATE(508), @@ -15143,24 +17709,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(508), [sym_concatenated_string] = STATE(508), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [sym_null] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1294), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1293), + [sym_false] = ACTIONS(1293), + [sym_null] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(82), }, [278] = { [sym__expression] = STATE(509), @@ -15183,24 +17776,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(509), [sym_concatenated_string] = STATE(509), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1298), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1297), + [sym_comment] = ACTIONS(82), }, [279] = { [sym__expression] = STATE(510), @@ -15223,24 +17843,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(510), [sym_concatenated_string] = STATE(510), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [sym_null] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1302), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [sym_null] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1301), + [sym_comment] = ACTIONS(82), }, [280] = { [sym__expression] = STATE(511), @@ -15263,24 +17910,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(511), [sym_concatenated_string] = STATE(511), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1306), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1305), + [sym_false] = ACTIONS(1305), + [sym_null] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1305), + [sym_comment] = ACTIONS(82), }, [281] = { [sym__expression] = STATE(512), @@ -15303,24 +17977,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(512), [sym_concatenated_string] = STATE(512), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1310), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [sym_null] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1309), + [sym_comment] = ACTIONS(82), }, [282] = { [sym__expression] = STATE(513), @@ -15343,24 +18044,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(513), [sym_concatenated_string] = STATE(513), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1314), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1313), + [sym_false] = ACTIONS(1313), + [sym_null] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1313), + [sym_comment] = ACTIONS(82), }, [283] = { [sym__expression] = STATE(514), @@ -15383,312 +18111,339 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(514), [sym_concatenated_string] = STATE(514), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [sym_null] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1318), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [sym_null] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1317), + [sym_comment] = ACTIONS(82), }, [284] = { [sym_string_literal] = STATE(515), [aux_sym_concatenated_string_repeat1] = STATE(515), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DASH_GT] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_STAR_EQ] = ACTIONS(750), + [anon_sym_SLASH_EQ] = ACTIONS(750), + [anon_sym_PERCENT_EQ] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [sym_null] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1322), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1319), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [sym_primitive_type] = 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(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1321), + [sym_comment] = ACTIONS(82), }, [286] = { - [anon_sym_RPAREN] = ACTIONS(1324), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1323), + [sym_comment] = ACTIONS(82), }, [287] = { - [anon_sym_COMMA] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_RBRACK] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_STAR_EQ] = ACTIONS(1326), - [anon_sym_SLASH_EQ] = ACTIONS(1326), - [anon_sym_PERCENT_EQ] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1326), - [anon_sym_DASH_EQ] = ACTIONS(1326), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1326), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_CARET] = ACTIONS(1328), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1328), - [anon_sym_GT_GT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_PERCENT] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1326), - [anon_sym_DASH_GT] = ACTIONS(1326), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_RBRACK] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_COLON] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_STAR_EQ] = ACTIONS(1325), + [anon_sym_SLASH_EQ] = ACTIONS(1325), + [anon_sym_PERCENT_EQ] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1325), + [anon_sym_DASH_EQ] = ACTIONS(1325), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_CARET_EQ] = ACTIONS(1325), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1327), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1325), + [sym_comment] = ACTIONS(82), }, [288] = { - [anon_sym_COMMA] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_RBRACK] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_STAR_EQ] = ACTIONS(1330), - [anon_sym_SLASH_EQ] = ACTIONS(1330), - [anon_sym_PERCENT_EQ] = ACTIONS(1330), - [anon_sym_PLUS_EQ] = ACTIONS(1330), - [anon_sym_DASH_EQ] = ACTIONS(1330), - [anon_sym_LT_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_EQ] = ACTIONS(1330), - [anon_sym_CARET_EQ] = ACTIONS(1330), - [anon_sym_PIPE_EQ] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1330), - [anon_sym_AMP_AMP] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1330), - [anon_sym_BANG_EQ] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1330), - [anon_sym_LT_LT] = ACTIONS(1332), - [anon_sym_GT_GT] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_PERCENT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1330), - [anon_sym_DASH_GT] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_PERCENT_EQ] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1329), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1331), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_DASH_GT] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [sym_comment] = ACTIONS(82), }, [289] = { [aux_sym_string_literal_repeat1] = STATE(289), - [anon_sym_DQUOTE] = ACTIONS(1334), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(1336), - [sym_escape_sequence] = ACTIONS(1336), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(1333), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(1335), + [sym_escape_sequence] = ACTIONS(1335), + [sym_comment] = ACTIONS(92), }, [290] = { - [anon_sym_RPAREN] = ACTIONS(1339), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1338), + [sym_comment] = ACTIONS(82), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1343), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_null] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1342), + [sym_comment] = ACTIONS(82), }, [292] = { [sym__declarator] = STATE(294), @@ -15697,32 +18452,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(294), [sym_type_qualifier] = STATE(518), [aux_sym_type_definition_repeat1] = STATE(518), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(629), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(633), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(634), + [sym_comment] = ACTIONS(82), }, [293] = { [sym_parameter_list] = STATE(302), - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [sym_comment] = ACTIONS(82), }, [294] = { [sym_parameter_list] = STATE(302), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(1347), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1346), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(1346), + [sym_comment] = ACTIONS(82), }, [295] = { [sym__declarator] = STATE(520), @@ -15731,14 +18509,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(520), [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1349), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(82), }, [296] = { [sym__declarator] = STATE(522), @@ -15746,69 +18547,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(522), [sym_array_declarator] = STATE(522), [sym_init_declarator] = STATE(523), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1351), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1350), + [sym_comment] = ACTIONS(82), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1353), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [sym_primitive_type] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_do] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [sym_null] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1355), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [sym_null] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(82), }, [298] = { [sym__declaration_specifiers] = STATE(426), @@ -15823,27 +18651,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(428), [aux_sym__declaration_specifiers_repeat1] = STATE(429), [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(1077), - [anon_sym_unsigned] = ACTIONS(1077), - [anon_sym_long] = ACTIONS(1077), - [anon_sym_short] = ACTIONS(1077), - [sym_primitive_type] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [299] = { [sym_type_qualifier] = STATE(527), @@ -15868,29 +18706,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(526), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(527), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1363), - [sym_false] = ACTIONS(1363), - [sym_null] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1363), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [sym_null] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1362), + [sym_comment] = ACTIONS(82), }, [300] = { [sym__expression] = STATE(528), @@ -15914,298 +18775,325 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(528), [sym_concatenated_string] = STATE(528), [sym_string_literal] = STATE(39), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [sym_null] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1367), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_null] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(82), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1371), - [sym_preproc_directive] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_typedef] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_auto] = ACTIONS(1371), - [anon_sym_register] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_restrict] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym__Atomic] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [sym_primitive_type] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_goto] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_sizeof] = ACTIONS(1371), - [sym_number_literal] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), - [sym_null] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1371), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1368), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(82), }, [302] = { - [anon_sym_COMMA] = ACTIONS(1373), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_EQ] = ACTIONS(1373), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [sym_comment] = ACTIONS(82), }, [303] = { [aux_sym_declaration_repeat1] = STATE(531), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(1375), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(1374), + [sym_comment] = ACTIONS(82), }, [304] = { [sym_storage_class_specifier] = STATE(304), [sym_type_qualifier] = STATE(304), [aux_sym__declaration_specifiers_repeat1] = STATE(304), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(866), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_const] = ACTIONS(869), - [anon_sym_restrict] = ACTIONS(869), - [anon_sym_volatile] = ACTIONS(869), - [anon_sym__Atomic] = ACTIONS(869), - [sym_identifier] = ACTIONS(872), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(867), + [anon_sym_auto] = ACTIONS(867), + [anon_sym_register] = ACTIONS(867), + [anon_sym_inline] = ACTIONS(867), + [anon_sym_const] = ACTIONS(870), + [anon_sym_restrict] = ACTIONS(870), + [anon_sym_volatile] = ACTIONS(870), + [anon_sym__Atomic] = ACTIONS(870), + [sym_identifier] = ACTIONS(873), + [sym_comment] = ACTIONS(82), }, [305] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(279), - [anon_sym_SLASH_EQ] = ACTIONS(279), - [anon_sym_PERCENT_EQ] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(279), - [anon_sym_DASH_EQ] = ACTIONS(279), - [anon_sym_LT_LT_EQ] = ACTIONS(279), - [anon_sym_GT_GT_EQ] = ACTIONS(279), - [anon_sym_AMP_EQ] = ACTIONS(279), - [anon_sym_CARET_EQ] = ACTIONS(279), - [anon_sym_PIPE_EQ] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(278), + [anon_sym_STAR_EQ] = ACTIONS(280), + [anon_sym_SLASH_EQ] = ACTIONS(280), + [anon_sym_PERCENT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_LT_LT_EQ] = ACTIONS(280), + [anon_sym_GT_GT_EQ] = ACTIONS(280), + [anon_sym_AMP_EQ] = ACTIONS(280), + [anon_sym_CARET_EQ] = ACTIONS(280), + [anon_sym_PIPE_EQ] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [306] = { - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [sym_comment] = ACTIONS(82), }, [307] = { - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_LPAREN2] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1381), - [anon_sym_EQ] = ACTIONS(1383), - [anon_sym_COLON] = ACTIONS(1381), - [anon_sym_QMARK] = ACTIONS(1381), - [anon_sym_STAR_EQ] = ACTIONS(1381), - [anon_sym_SLASH_EQ] = ACTIONS(1381), - [anon_sym_PERCENT_EQ] = ACTIONS(1381), - [anon_sym_PLUS_EQ] = ACTIONS(1381), - [anon_sym_DASH_EQ] = ACTIONS(1381), - [anon_sym_LT_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_GT_EQ] = ACTIONS(1381), - [anon_sym_AMP_EQ] = ACTIONS(1381), - [anon_sym_CARET_EQ] = ACTIONS(1381), - [anon_sym_PIPE_EQ] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_PIPE_PIPE] = ACTIONS(1381), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1383), - [anon_sym_EQ_EQ] = ACTIONS(1381), - [anon_sym_BANG_EQ] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_GT] = ACTIONS(1383), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(1383), - [anon_sym_PERCENT] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DOT] = ACTIONS(1381), - [anon_sym_DASH_GT] = ACTIONS(1381), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1380), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1382), + [anon_sym_COLON] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_STAR_EQ] = ACTIONS(1380), + [anon_sym_SLASH_EQ] = ACTIONS(1380), + [anon_sym_PERCENT_EQ] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1380), + [anon_sym_DASH_EQ] = ACTIONS(1380), + [anon_sym_LT_LT_EQ] = ACTIONS(1380), + [anon_sym_GT_GT_EQ] = ACTIONS(1380), + [anon_sym_AMP_EQ] = ACTIONS(1380), + [anon_sym_CARET_EQ] = ACTIONS(1380), + [anon_sym_PIPE_EQ] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1382), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_LT] = ACTIONS(1382), + [anon_sym_GT_GT] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1380), + [anon_sym_DASH_GT] = ACTIONS(1380), + [sym_comment] = ACTIONS(82), }, [308] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(534), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [309] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(1391), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_COLON] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PERCENT] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [310] = { [sym_type_qualifier] = STATE(73), @@ -16239,36 +19127,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [311] = { [sym__expression] = STATE(75), @@ -16291,24 +19194,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [312] = { [sym__expression] = STATE(108), @@ -16331,24 +19261,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(108), [sym_concatenated_string] = STATE(108), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(210), + [sym_false] = ACTIONS(210), + [sym_null] = ACTIONS(210), + [sym_identifier] = ACTIONS(210), + [sym_comment] = ACTIONS(82), }, [313] = { [sym__expression] = STATE(109), @@ -16371,24 +19328,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(109), [sym_concatenated_string] = STATE(109), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(212), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_null] = ACTIONS(214), + [sym_identifier] = ACTIONS(214), + [sym_comment] = ACTIONS(82), }, [314] = { [sym__expression] = STATE(110), @@ -16411,24 +19395,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(110), [sym_concatenated_string] = STATE(110), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(216), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_null] = ACTIONS(218), + [sym_identifier] = ACTIONS(218), + [sym_comment] = ACTIONS(82), }, [315] = { [sym__expression] = STATE(537), @@ -16451,150 +19462,177 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(537), [sym_concatenated_string] = STATE(537), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [sym_null] = ACTIONS(1397), - [sym_identifier] = ACTIONS(1397), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_null] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1396), + [sym_comment] = ACTIONS(82), }, [316] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [317] = { [sym_string_literal] = STATE(551), [aux_sym_concatenated_string_repeat1] = STATE(551), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_RBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_RBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [318] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(279), - [anon_sym_SLASH_EQ] = ACTIONS(279), - [anon_sym_PERCENT_EQ] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(279), - [anon_sym_DASH_EQ] = ACTIONS(279), - [anon_sym_LT_LT_EQ] = ACTIONS(279), - [anon_sym_GT_GT_EQ] = ACTIONS(279), - [anon_sym_AMP_EQ] = ACTIONS(279), - [anon_sym_CARET_EQ] = ACTIONS(279), - [anon_sym_PIPE_EQ] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(280), + [anon_sym_SLASH_EQ] = ACTIONS(280), + [anon_sym_PERCENT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_LT_LT_EQ] = ACTIONS(280), + [anon_sym_GT_GT_EQ] = ACTIONS(280), + [anon_sym_AMP_EQ] = ACTIONS(280), + [anon_sym_CARET_EQ] = ACTIONS(280), + [anon_sym_PIPE_EQ] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [319] = { [sym_type_qualifier] = STATE(73), @@ -16628,36 +19666,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [320] = { [sym__expression] = STATE(75), @@ -16680,24 +19733,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [321] = { [sym__expression] = STATE(108), @@ -16720,24 +19800,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(108), [sym_concatenated_string] = STATE(108), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(210), + [sym_false] = ACTIONS(210), + [sym_null] = ACTIONS(210), + [sym_identifier] = ACTIONS(210), + [sym_comment] = ACTIONS(82), }, [322] = { [sym__expression] = STATE(109), @@ -16760,24 +19867,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(109), [sym_concatenated_string] = STATE(109), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(212), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_null] = ACTIONS(214), + [sym_identifier] = ACTIONS(214), + [sym_comment] = ACTIONS(82), }, [323] = { [sym__expression] = STATE(110), @@ -16800,24 +19934,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(110), [sym_concatenated_string] = STATE(110), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(216), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_null] = ACTIONS(218), + [sym_identifier] = ACTIONS(218), + [sym_comment] = ACTIONS(82), }, [324] = { [sym__expression] = STATE(554), @@ -16840,852 +20001,879 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(554), [sym_concatenated_string] = STATE(554), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1435), - [sym_false] = ACTIONS(1435), - [sym_null] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1435), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_null] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1434), + [sym_comment] = ACTIONS(82), }, [325] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(1441), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(1440), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [326] = { [sym_string_literal] = STATE(568), [aux_sym_concatenated_string_repeat1] = STATE(568), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(234), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [327] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [328] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [329] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [330] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [331] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [332] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [333] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [334] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [335] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [336] = { - [anon_sym_COMMA] = ACTIONS(1487), - [anon_sym_RPAREN] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_LPAREN2] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_RBRACK] = ACTIONS(1487), - [anon_sym_EQ] = ACTIONS(1489), - [anon_sym_COLON] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1487), - [anon_sym_STAR_EQ] = ACTIONS(1487), - [anon_sym_SLASH_EQ] = ACTIONS(1487), - [anon_sym_PERCENT_EQ] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1487), - [anon_sym_DASH_EQ] = ACTIONS(1487), - [anon_sym_LT_LT_EQ] = ACTIONS(1487), - [anon_sym_GT_GT_EQ] = ACTIONS(1487), - [anon_sym_AMP_EQ] = ACTIONS(1487), - [anon_sym_CARET_EQ] = ACTIONS(1487), - [anon_sym_PIPE_EQ] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_EQ_EQ] = ACTIONS(1487), - [anon_sym_BANG_EQ] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1487), - [anon_sym_LT_LT] = ACTIONS(1489), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DASH_GT] = ACTIONS(1487), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_COLON] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [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(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_DASH_GT] = ACTIONS(1486), + [sym_comment] = ACTIONS(82), }, [337] = { [sym_string_literal] = STATE(337), [aux_sym_concatenated_string_repeat1] = STATE(337), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DASH_GT] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(82), }, [338] = { [sym_storage_class_specifier] = STATE(304), [sym_type_qualifier] = STATE(304), [aux_sym__declaration_specifiers_repeat1] = STATE(304), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1500), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(1499), + [sym_comment] = ACTIONS(82), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_null] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1329), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_null] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1331), + [sym_comment] = ACTIONS(82), }, [340] = { [aux_sym_preproc_params_repeat1] = STATE(571), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1504), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1503), + [sym_comment] = ACTIONS(82), }, [341] = { - [anon_sym_LF] = ACTIONS(1506), - [sym_preproc_arg] = ACTIONS(1506), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(1505), + [sym_preproc_arg] = ACTIONS(1505), + [sym_comment] = ACTIONS(92), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_null] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1510), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1509), + [sym_preproc_directive] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_goto] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_sizeof] = ACTIONS(1509), + [sym_number_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1509), + [sym_comment] = ACTIONS(82), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_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(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1514), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1511), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1513), + [sym_preproc_directive] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_typedef] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_LPAREN2] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_goto] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_sizeof] = ACTIONS(1513), + [sym_number_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [sym_null] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1513), + [sym_comment] = ACTIONS(82), }, [344] = { - [anon_sym_LF] = ACTIONS(1516), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(1515), + [sym_comment] = ACTIONS(92), }, [345] = { [aux_sym_string_literal_repeat1] = STATE(574), - [anon_sym_DQUOTE] = ACTIONS(1518), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(1520), - [sym_escape_sequence] = ACTIONS(1520), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(1517), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(1519), + [sym_escape_sequence] = ACTIONS(1519), + [sym_comment] = ACTIONS(92), }, [346] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(326), - [sym_preproc_directive] = ACTIONS(326), - [anon_sym_SEMI] = ACTIONS(324), - [anon_sym_typedef] = ACTIONS(326), - [anon_sym_extern] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_LPAREN2] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_static] = ACTIONS(326), - [anon_sym_auto] = ACTIONS(326), - [anon_sym_register] = ACTIONS(326), - [anon_sym_inline] = ACTIONS(326), - [anon_sym_const] = ACTIONS(326), - [anon_sym_restrict] = ACTIONS(326), - [anon_sym_volatile] = ACTIONS(326), - [anon_sym__Atomic] = ACTIONS(326), - [anon_sym_signed] = ACTIONS(326), - [anon_sym_unsigned] = ACTIONS(326), - [anon_sym_long] = ACTIONS(326), - [anon_sym_short] = ACTIONS(326), - [sym_primitive_type] = ACTIONS(326), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(326), - [anon_sym_union] = ACTIONS(326), - [anon_sym_if] = ACTIONS(326), - [anon_sym_switch] = ACTIONS(326), - [anon_sym_while] = ACTIONS(326), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(326), - [anon_sym_return] = ACTIONS(326), - [anon_sym_break] = ACTIONS(326), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_goto] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(324), - [anon_sym_sizeof] = ACTIONS(326), - [sym_number_literal] = ACTIONS(324), - [anon_sym_SQUOTE] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(324), - [sym_true] = ACTIONS(326), - [sym_false] = ACTIONS(326), - [sym_null] = ACTIONS(326), - [sym_identifier] = ACTIONS(326), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(327), + [sym_preproc_directive] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_typedef] = ACTIONS(327), + [anon_sym_extern] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(325), + [anon_sym_LPAREN2] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_static] = ACTIONS(327), + [anon_sym_auto] = ACTIONS(327), + [anon_sym_register] = ACTIONS(327), + [anon_sym_inline] = ACTIONS(327), + [anon_sym_const] = ACTIONS(327), + [anon_sym_restrict] = ACTIONS(327), + [anon_sym_volatile] = ACTIONS(327), + [anon_sym__Atomic] = ACTIONS(327), + [anon_sym_signed] = ACTIONS(327), + [anon_sym_unsigned] = ACTIONS(327), + [anon_sym_long] = ACTIONS(327), + [anon_sym_short] = ACTIONS(327), + [sym_primitive_type] = 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_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(325), + [anon_sym_SQUOTE] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [sym_true] = ACTIONS(327), + [sym_false] = ACTIONS(327), + [sym_null] = ACTIONS(327), + [sym_identifier] = ACTIONS(327), + [sym_comment] = ACTIONS(82), }, [347] = { [sym_preproc_params] = STATE(577), - [anon_sym_LF] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(330), - [sym_preproc_arg] = ACTIONS(1524), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(331), + [sym_preproc_arg] = ACTIONS(1523), + [sym_comment] = ACTIONS(92), }, [348] = { [sym_preproc_include] = STATE(580), @@ -17746,62 +20934,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(580), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1525), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [349] = { [sym_preproc_include] = STATE(583), @@ -17862,142 +21051,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(583), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1527), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [350] = { [sym_string_literal] = STATE(585), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym_system_lib_string] = ACTIONS(1532), - [sym_comment] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(1529), + [sym_system_lib_string] = ACTIONS(1531), + [sym_comment] = ACTIONS(82), }, [351] = { - [sym_identifier] = ACTIONS(1534), - [sym_comment] = ACTIONS(81), + [sym_identifier] = ACTIONS(1533), + [sym_comment] = ACTIONS(82), }, [352] = { - [sym_preproc_arg] = ACTIONS(1536), - [sym_comment] = ACTIONS(91), + [sym_preproc_arg] = ACTIONS(1535), + [sym_comment] = ACTIONS(92), }, [353] = { - [sym_identifier] = ACTIONS(1538), - [sym_comment] = ACTIONS(81), + [sym_identifier] = ACTIONS(1537), + [sym_comment] = ACTIONS(82), }, [354] = { - [anon_sym_LF] = ACTIONS(1540), - [sym_preproc_arg] = ACTIONS(1542), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(1539), + [sym_preproc_arg] = ACTIONS(1541), + [sym_comment] = ACTIONS(92), }, [355] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(99), - [anon_sym_typedef] = ACTIONS(101), - [anon_sym_extern] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_LPAREN2] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_auto] = ACTIONS(101), - [anon_sym_register] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_const] = ACTIONS(101), - [anon_sym_restrict] = ACTIONS(101), - [anon_sym_volatile] = ACTIONS(101), - [anon_sym__Atomic] = ACTIONS(101), - [anon_sym_signed] = ACTIONS(101), - [anon_sym_unsigned] = ACTIONS(101), - [anon_sym_long] = ACTIONS(101), - [anon_sym_short] = ACTIONS(101), - [sym_primitive_type] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(101), - [anon_sym_struct] = ACTIONS(101), - [anon_sym_union] = ACTIONS(101), - [anon_sym_if] = ACTIONS(101), - [anon_sym_else] = ACTIONS(101), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_while] = ACTIONS(101), - [anon_sym_do] = ACTIONS(101), - [anon_sym_for] = ACTIONS(101), - [anon_sym_return] = ACTIONS(101), - [anon_sym_break] = ACTIONS(101), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [sym_number_literal] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_true] = ACTIONS(101), - [sym_false] = ACTIONS(101), - [sym_null] = ACTIONS(101), - [sym_identifier] = ACTIONS(101), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(102), + [sym_preproc_directive] = ACTIONS(102), + [anon_sym_SEMI] = ACTIONS(100), + [anon_sym_typedef] = ACTIONS(102), + [anon_sym_extern] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(100), + [anon_sym_LPAREN2] = ACTIONS(100), + [anon_sym_STAR] = ACTIONS(100), + [anon_sym_static] = ACTIONS(102), + [anon_sym_auto] = ACTIONS(102), + [anon_sym_register] = ACTIONS(102), + [anon_sym_inline] = ACTIONS(102), + [anon_sym_const] = ACTIONS(102), + [anon_sym_restrict] = ACTIONS(102), + [anon_sym_volatile] = ACTIONS(102), + [anon_sym__Atomic] = ACTIONS(102), + [anon_sym_signed] = ACTIONS(102), + [anon_sym_unsigned] = ACTIONS(102), + [anon_sym_long] = ACTIONS(102), + [anon_sym_short] = ACTIONS(102), + [sym_primitive_type] = ACTIONS(102), + [anon_sym_enum] = ACTIONS(102), + [anon_sym_struct] = ACTIONS(102), + [anon_sym_union] = ACTIONS(102), + [anon_sym_if] = ACTIONS(102), + [anon_sym_else] = ACTIONS(102), + [anon_sym_switch] = ACTIONS(102), + [anon_sym_while] = ACTIONS(102), + [anon_sym_do] = ACTIONS(102), + [anon_sym_for] = ACTIONS(102), + [anon_sym_return] = ACTIONS(102), + [anon_sym_break] = ACTIONS(102), + [anon_sym_continue] = ACTIONS(102), + [anon_sym_goto] = ACTIONS(102), + [anon_sym_AMP] = ACTIONS(100), + [anon_sym_BANG] = ACTIONS(100), + [anon_sym_TILDE] = ACTIONS(100), + [anon_sym_PLUS] = ACTIONS(102), + [anon_sym_DASH] = ACTIONS(102), + [anon_sym_DASH_DASH] = ACTIONS(100), + [anon_sym_PLUS_PLUS] = ACTIONS(100), + [anon_sym_sizeof] = ACTIONS(102), + [sym_number_literal] = ACTIONS(100), + [anon_sym_SQUOTE] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(100), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_identifier] = ACTIONS(102), + [sym_comment] = ACTIONS(82), }, [356] = { [sym_type_qualifier] = STATE(592), @@ -18009,43 +21199,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(591), [aux_sym_type_definition_repeat1] = STATE(592), [aux_sym_sized_type_specifier_repeat1] = STATE(53), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(103), - [anon_sym_unsigned] = ACTIONS(103), - [anon_sym_long] = ACTIONS(103), - [anon_sym_short] = ACTIONS(103), - [sym_primitive_type] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(104), + [anon_sym_unsigned] = ACTIONS(104), + [anon_sym_long] = ACTIONS(104), + [anon_sym_short] = ACTIONS(104), + [sym_primitive_type] = ACTIONS(1543), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [357] = { [sym_string_literal] = STATE(593), - [anon_sym_extern] = ACTIONS(109), - [anon_sym_static] = ACTIONS(109), - [anon_sym_auto] = ACTIONS(109), - [anon_sym_register] = ACTIONS(109), - [anon_sym_inline] = ACTIONS(109), - [anon_sym_const] = ACTIONS(109), - [anon_sym_restrict] = ACTIONS(109), - [anon_sym_volatile] = ACTIONS(109), - [anon_sym__Atomic] = ACTIONS(109), - [anon_sym_signed] = ACTIONS(109), - [anon_sym_unsigned] = ACTIONS(109), - [anon_sym_long] = ACTIONS(109), - [anon_sym_short] = ACTIONS(109), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(109), - [anon_sym_struct] = ACTIONS(109), - [anon_sym_union] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(110), + [anon_sym_static] = ACTIONS(110), + [anon_sym_auto] = ACTIONS(110), + [anon_sym_register] = ACTIONS(110), + [anon_sym_inline] = ACTIONS(110), + [anon_sym_const] = ACTIONS(110), + [anon_sym_restrict] = ACTIONS(110), + [anon_sym_volatile] = ACTIONS(110), + [anon_sym__Atomic] = ACTIONS(110), + [anon_sym_signed] = ACTIONS(110), + [anon_sym_unsigned] = ACTIONS(110), + [anon_sym_long] = ACTIONS(110), + [anon_sym_short] = ACTIONS(110), + [sym_primitive_type] = ACTIONS(110), + [anon_sym_enum] = ACTIONS(110), + [anon_sym_struct] = ACTIONS(110), + [anon_sym_union] = ACTIONS(110), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_identifier] = ACTIONS(110), + [sym_comment] = ACTIONS(82), }, [358] = { [sym_preproc_include] = STATE(595), @@ -18104,75 +21309,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(595), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [359] = { [sym_parenthesized_expression] = STATE(596), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [360] = { [sym_parenthesized_expression] = STATE(597), - [anon_sym_LPAREN2] = ACTIONS(167), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(168), + [sym_comment] = ACTIONS(82), }, [361] = { [sym_parenthesized_expression] = STATE(598), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [362] = { [sym_compound_statement] = STATE(599), @@ -18208,39 +21414,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [363] = { - [anon_sym_LPAREN2] = ACTIONS(1548), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1547), + [sym_comment] = ACTIONS(82), }, [364] = { [sym__expression] = STATE(602), @@ -18263,89 +21488,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(602), [sym_concatenated_string] = STATE(602), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1554), - [sym_false] = ACTIONS(1554), - [sym_null] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [sym_null] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1553), + [sym_comment] = ACTIONS(82), }, [365] = { - [anon_sym_SEMI] = ACTIONS(1556), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1555), + [sym_comment] = ACTIONS(82), }, [366] = { - [anon_sym_SEMI] = ACTIONS(1558), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1557), + [sym_comment] = ACTIONS(82), }, [367] = { - [sym_identifier] = ACTIONS(1560), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1559), + [sym_comment] = ACTIONS(82), }, [368] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(235), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym_COLON] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(236), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [anon_sym_COLON] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [369] = { [sym__declarator] = STATE(608), @@ -18353,57 +21632,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(608), [sym_array_declarator] = STATE(608), [sym_init_declarator] = STATE(609), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [sym_identifier] = ACTIONS(1566), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1565), + [sym_comment] = ACTIONS(82), }, [370] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(279), - [anon_sym_SLASH_EQ] = ACTIONS(279), - [anon_sym_PERCENT_EQ] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(279), - [anon_sym_DASH_EQ] = ACTIONS(279), - [anon_sym_LT_LT_EQ] = ACTIONS(279), - [anon_sym_GT_GT_EQ] = ACTIONS(279), - [anon_sym_AMP_EQ] = ACTIONS(279), - [anon_sym_CARET_EQ] = ACTIONS(279), - [anon_sym_PIPE_EQ] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(278), + [anon_sym_STAR_EQ] = ACTIONS(280), + [anon_sym_SLASH_EQ] = ACTIONS(280), + [anon_sym_PERCENT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_LT_LT_EQ] = ACTIONS(280), + [anon_sym_GT_GT_EQ] = ACTIONS(280), + [anon_sym_AMP_EQ] = ACTIONS(280), + [anon_sym_CARET_EQ] = ACTIONS(280), + [anon_sym_PIPE_EQ] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [371] = { - [anon_sym_SEMI] = ACTIONS(1568), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1567), + [sym_comment] = ACTIONS(82), }, [372] = { [sym_preproc_include] = STATE(611), @@ -18462,60 +21768,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(611), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(921), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(923), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1570), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(927), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(927), - [sym_preproc_directive] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_typedef] = ACTIONS(933), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(920), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(922), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1569), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [sym_comment] = ACTIONS(82), }, [373] = { [sym_preproc_include] = STATE(613), @@ -18576,134 +21883,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(613), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1572), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1571), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [374] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(386), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_typedef] = ACTIONS(386), - [anon_sym_extern] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_LPAREN2] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_static] = ACTIONS(386), - [anon_sym_auto] = ACTIONS(386), - [anon_sym_register] = ACTIONS(386), - [anon_sym_inline] = ACTIONS(386), - [anon_sym_const] = ACTIONS(386), - [anon_sym_restrict] = ACTIONS(386), - [anon_sym_volatile] = ACTIONS(386), - [anon_sym__Atomic] = ACTIONS(386), - [anon_sym_signed] = ACTIONS(386), - [anon_sym_unsigned] = ACTIONS(386), - [anon_sym_long] = ACTIONS(386), - [anon_sym_short] = ACTIONS(386), - [sym_primitive_type] = ACTIONS(386), - [anon_sym_enum] = ACTIONS(386), - [anon_sym_struct] = ACTIONS(386), - [anon_sym_union] = ACTIONS(386), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(386), - [anon_sym_while] = ACTIONS(386), - [anon_sym_do] = ACTIONS(386), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(386), - [anon_sym_break] = ACTIONS(386), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_goto] = ACTIONS(386), - [anon_sym_AMP] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_DASH_DASH] = ACTIONS(384), - [anon_sym_PLUS_PLUS] = ACTIONS(384), - [anon_sym_sizeof] = ACTIONS(386), - [sym_number_literal] = ACTIONS(384), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [sym_true] = ACTIONS(386), - [sym_false] = ACTIONS(386), - [sym_null] = ACTIONS(386), - [sym_identifier] = ACTIONS(386), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(387), + [sym_preproc_directive] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_static] = ACTIONS(387), + [anon_sym_auto] = ACTIONS(387), + [anon_sym_register] = ACTIONS(387), + [anon_sym_inline] = ACTIONS(387), + [anon_sym_const] = ACTIONS(387), + [anon_sym_restrict] = ACTIONS(387), + [anon_sym_volatile] = ACTIONS(387), + [anon_sym__Atomic] = ACTIONS(387), + [anon_sym_signed] = ACTIONS(387), + [anon_sym_unsigned] = ACTIONS(387), + [anon_sym_long] = ACTIONS(387), + [anon_sym_short] = ACTIONS(387), + [sym_primitive_type] = ACTIONS(387), + [anon_sym_enum] = ACTIONS(387), + [anon_sym_struct] = ACTIONS(387), + [anon_sym_union] = ACTIONS(387), + [anon_sym_if] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(387), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(387), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(385), + [anon_sym_sizeof] = ACTIONS(387), + [sym_number_literal] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(385), + [sym_true] = ACTIONS(387), + [sym_false] = ACTIONS(387), + [sym_null] = ACTIONS(387), + [sym_identifier] = ACTIONS(387), + [sym_comment] = ACTIONS(82), }, [375] = { - [anon_sym_LF] = ACTIONS(1574), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(1573), + [sym_comment] = ACTIONS(92), }, [376] = { [sym__type_declarator] = STATE(615), [sym_pointer_type_declarator] = STATE(615), [sym_function_type_declarator] = STATE(615), [sym_array_type_declarator] = STATE(615), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [377] = { [sym_type_qualifier] = STATE(192), @@ -18715,20 +22050,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(616), [aux_sym_type_definition_repeat1] = STATE(192), [aux_sym_sized_type_specifier_repeat1] = STATE(53), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(103), - [anon_sym_unsigned] = ACTIONS(103), - [anon_sym_long] = ACTIONS(103), - [anon_sym_short] = ACTIONS(103), - [sym_primitive_type] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(104), + [anon_sym_unsigned] = ACTIONS(104), + [anon_sym_long] = ACTIONS(104), + [anon_sym_short] = ACTIONS(104), + [sym_primitive_type] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [378] = { [sym_function_definition] = STATE(618), @@ -18745,85 +22095,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [379] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(413), - [sym_preproc_directive] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_typedef] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(411), - [anon_sym_LPAREN2] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_static] = ACTIONS(413), - [anon_sym_auto] = ACTIONS(413), - [anon_sym_register] = ACTIONS(413), - [anon_sym_inline] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_signed] = ACTIONS(413), - [anon_sym_unsigned] = ACTIONS(413), - [anon_sym_long] = ACTIONS(413), - [anon_sym_short] = ACTIONS(413), - [sym_primitive_type] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [anon_sym_if] = ACTIONS(413), - [anon_sym_else] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(413), - [anon_sym_while] = ACTIONS(413), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(413), - [anon_sym_return] = ACTIONS(413), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(411), - [anon_sym_PLUS_PLUS] = ACTIONS(411), - [anon_sym_sizeof] = ACTIONS(413), - [sym_number_literal] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_identifier] = ACTIONS(413), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(414), + [sym_preproc_directive] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_typedef] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LPAREN2] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_static] = ACTIONS(414), + [anon_sym_auto] = ACTIONS(414), + [anon_sym_register] = ACTIONS(414), + [anon_sym_inline] = ACTIONS(414), + [anon_sym_const] = ACTIONS(414), + [anon_sym_restrict] = ACTIONS(414), + [anon_sym_volatile] = ACTIONS(414), + [anon_sym__Atomic] = ACTIONS(414), + [anon_sym_signed] = ACTIONS(414), + [anon_sym_unsigned] = ACTIONS(414), + [anon_sym_long] = ACTIONS(414), + [anon_sym_short] = ACTIONS(414), + [sym_primitive_type] = ACTIONS(414), + [anon_sym_enum] = ACTIONS(414), + [anon_sym_struct] = ACTIONS(414), + [anon_sym_union] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_else] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(414), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_sizeof] = ACTIONS(414), + [sym_number_literal] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_true] = ACTIONS(414), + [sym_false] = ACTIONS(414), + [sym_null] = ACTIONS(414), + [sym_identifier] = ACTIONS(414), + [sym_comment] = ACTIONS(82), }, [380] = { [sym_preproc_include] = STATE(205), @@ -18882,60 +22242,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [381] = { [sym_compound_statement] = STATE(625), @@ -18971,40 +22332,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [382] = { [sym_switch_body] = STATE(627), - [anon_sym_LBRACE] = ACTIONS(1590), - [sym_comment] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(1589), + [sym_comment] = ACTIONS(82), }, [383] = { [sym_compound_statement] = STATE(629), @@ -19040,39 +22420,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [384] = { - [anon_sym_while] = ACTIONS(1594), - [sym_comment] = ACTIONS(81), + [anon_sym_while] = ACTIONS(1593), + [sym_comment] = ACTIONS(82), }, [385] = { [sym_declaration] = STATE(631), @@ -19107,264 +22506,274 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1600), - [sym_false] = ACTIONS(1600), - [sym_null] = ACTIONS(1600), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_null] = ACTIONS(1599), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [386] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(551), - [sym_preproc_directive] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_typedef] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_static] = ACTIONS(551), - [anon_sym_auto] = ACTIONS(551), - [anon_sym_register] = ACTIONS(551), - [anon_sym_inline] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_restrict] = ACTIONS(551), - [anon_sym_volatile] = ACTIONS(551), - [anon_sym__Atomic] = ACTIONS(551), - [anon_sym_signed] = ACTIONS(551), - [anon_sym_unsigned] = ACTIONS(551), - [anon_sym_long] = ACTIONS(551), - [anon_sym_short] = ACTIONS(551), - [sym_primitive_type] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_union] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_goto] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_sizeof] = ACTIONS(551), - [sym_number_literal] = ACTIONS(549), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_null] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(552), + [sym_preproc_directive] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_static] = ACTIONS(552), + [anon_sym_auto] = ACTIONS(552), + [anon_sym_register] = ACTIONS(552), + [anon_sym_inline] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_restrict] = ACTIONS(552), + [anon_sym_volatile] = ACTIONS(552), + [anon_sym__Atomic] = ACTIONS(552), + [anon_sym_signed] = ACTIONS(552), + [anon_sym_unsigned] = ACTIONS(552), + [anon_sym_long] = ACTIONS(552), + [anon_sym_short] = ACTIONS(552), + [sym_primitive_type] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_switch] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_do] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_goto] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_sizeof] = ACTIONS(552), + [sym_number_literal] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(550), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_null] = ACTIONS(552), + [sym_identifier] = ACTIONS(552), + [sym_comment] = ACTIONS(82), }, [387] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [388] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(591), - [sym_preproc_directive] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_typedef] = ACTIONS(591), - [anon_sym_extern] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_LPAREN2] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_static] = ACTIONS(591), - [anon_sym_auto] = ACTIONS(591), - [anon_sym_register] = ACTIONS(591), - [anon_sym_inline] = ACTIONS(591), - [anon_sym_const] = ACTIONS(591), - [anon_sym_restrict] = ACTIONS(591), - [anon_sym_volatile] = ACTIONS(591), - [anon_sym__Atomic] = ACTIONS(591), - [anon_sym_signed] = ACTIONS(591), - [anon_sym_unsigned] = ACTIONS(591), - [anon_sym_long] = ACTIONS(591), - [anon_sym_short] = ACTIONS(591), - [sym_primitive_type] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(591), - [anon_sym_union] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_switch] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_goto] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_sizeof] = ACTIONS(591), - [sym_number_literal] = ACTIONS(589), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DQUOTE] = ACTIONS(589), - [sym_true] = ACTIONS(591), - [sym_false] = ACTIONS(591), - [sym_null] = ACTIONS(591), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(592), + [sym_preproc_directive] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_typedef] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LPAREN2] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_static] = ACTIONS(592), + [anon_sym_auto] = ACTIONS(592), + [anon_sym_register] = ACTIONS(592), + [anon_sym_inline] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_restrict] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(592), + [anon_sym__Atomic] = ACTIONS(592), + [anon_sym_signed] = ACTIONS(592), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_else] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_goto] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(592), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(590), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_null] = ACTIONS(592), + [sym_identifier] = ACTIONS(592), + [sym_comment] = ACTIONS(82), }, [389] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(595), - [sym_preproc_directive] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_typedef] = ACTIONS(595), - [anon_sym_extern] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_static] = ACTIONS(595), - [anon_sym_auto] = ACTIONS(595), - [anon_sym_register] = ACTIONS(595), - [anon_sym_inline] = ACTIONS(595), - [anon_sym_const] = ACTIONS(595), - [anon_sym_restrict] = ACTIONS(595), - [anon_sym_volatile] = ACTIONS(595), - [anon_sym__Atomic] = ACTIONS(595), - [anon_sym_signed] = ACTIONS(595), - [anon_sym_unsigned] = ACTIONS(595), - [anon_sym_long] = ACTIONS(595), - [anon_sym_short] = ACTIONS(595), - [sym_primitive_type] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(595), - [anon_sym_union] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(595), - [anon_sym_while] = ACTIONS(595), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_sizeof] = ACTIONS(595), - [sym_number_literal] = ACTIONS(593), - [anon_sym_SQUOTE] = ACTIONS(593), - [anon_sym_DQUOTE] = ACTIONS(593), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_null] = ACTIONS(595), - [sym_identifier] = ACTIONS(595), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(596), + [sym_preproc_directive] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_typedef] = ACTIONS(596), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_static] = ACTIONS(596), + [anon_sym_auto] = ACTIONS(596), + [anon_sym_register] = ACTIONS(596), + [anon_sym_inline] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_restrict] = ACTIONS(596), + [anon_sym_volatile] = ACTIONS(596), + [anon_sym__Atomic] = ACTIONS(596), + [anon_sym_signed] = ACTIONS(596), + [anon_sym_unsigned] = ACTIONS(596), + [anon_sym_long] = ACTIONS(596), + [anon_sym_short] = ACTIONS(596), + [sym_primitive_type] = 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_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(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_null] = ACTIONS(596), + [sym_identifier] = ACTIONS(596), + [sym_comment] = ACTIONS(82), }, [390] = { - [anon_sym_SEMI] = ACTIONS(1604), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1603), + [sym_comment] = ACTIONS(82), }, [391] = { [sym_compound_statement] = STATE(635), @@ -19400,231 +22809,250 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1608), - [sym_preproc_directive] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_typedef] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_auto] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_inline] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_restrict] = ACTIONS(1608), - [anon_sym_volatile] = ACTIONS(1608), - [anon_sym__Atomic] = ACTIONS(1608), - [anon_sym_signed] = ACTIONS(1608), - [anon_sym_unsigned] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [sym_primitive_type] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_goto] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_sizeof] = ACTIONS(1608), - [sym_number_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [sym_true] = ACTIONS(1608), - [sym_false] = ACTIONS(1608), - [sym_null] = ACTIONS(1608), - [sym_identifier] = ACTIONS(1608), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1605), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1607), + [sym_preproc_directive] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym_true] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), + [sym_comment] = ACTIONS(82), }, [393] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_typedef] = ACTIONS(627), - [anon_sym_extern] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN2] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_static] = ACTIONS(627), - [anon_sym_auto] = ACTIONS(627), - [anon_sym_register] = ACTIONS(627), - [anon_sym_inline] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_restrict] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(627), - [anon_sym__Atomic] = ACTIONS(627), - [anon_sym_signed] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(627), - [anon_sym_long] = ACTIONS(627), - [anon_sym_short] = ACTIONS(627), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_struct] = ACTIONS(627), - [anon_sym_union] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_while] = ACTIONS(627), - [anon_sym_do] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(627), - [sym_number_literal] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_null] = ACTIONS(627), - [sym_identifier] = ACTIONS(627), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(628), + [sym_preproc_directive] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_typedef] = ACTIONS(628), + [anon_sym_extern] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_LPAREN2] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_static] = ACTIONS(628), + [anon_sym_auto] = ACTIONS(628), + [anon_sym_register] = ACTIONS(628), + [anon_sym_inline] = ACTIONS(628), + [anon_sym_const] = ACTIONS(628), + [anon_sym_restrict] = ACTIONS(628), + [anon_sym_volatile] = ACTIONS(628), + [anon_sym__Atomic] = ACTIONS(628), + [anon_sym_signed] = ACTIONS(628), + [anon_sym_unsigned] = ACTIONS(628), + [anon_sym_long] = ACTIONS(628), + [anon_sym_short] = ACTIONS(628), + [sym_primitive_type] = ACTIONS(628), + [anon_sym_enum] = ACTIONS(628), + [anon_sym_struct] = ACTIONS(628), + [anon_sym_union] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_do] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(628), + [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(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_null] = ACTIONS(628), + [sym_identifier] = ACTIONS(628), + [sym_comment] = ACTIONS(82), }, [394] = { [sym_compound_statement] = STATE(637), [sym_parameter_list] = STATE(302), [aux_sym_declaration_repeat1] = STATE(638), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(643), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(644), + [sym_comment] = ACTIONS(82), }, [395] = { [aux_sym_declaration_repeat1] = STATE(638), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(1610), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(1609), + [sym_comment] = ACTIONS(82), }, [396] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(655), - [sym_preproc_directive] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_typedef] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_auto] = ACTIONS(655), - [anon_sym_register] = ACTIONS(655), - [anon_sym_inline] = ACTIONS(655), - [anon_sym_const] = ACTIONS(655), - [anon_sym_restrict] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym__Atomic] = ACTIONS(655), - [anon_sym_signed] = ACTIONS(655), - [anon_sym_unsigned] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [sym_primitive_type] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(655), - [anon_sym_union] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_goto] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(655), - [sym_number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_null] = ACTIONS(655), - [sym_identifier] = ACTIONS(655), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(656), + [sym_preproc_directive] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_typedef] = ACTIONS(656), + [anon_sym_extern] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(656), + [anon_sym_restrict] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym__Atomic] = ACTIONS(656), + [anon_sym_signed] = ACTIONS(656), + [anon_sym_unsigned] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [sym_primitive_type] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_struct] = ACTIONS(656), + [anon_sym_union] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_else] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_goto] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_sizeof] = ACTIONS(656), + [sym_number_literal] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_null] = ACTIONS(656), + [sym_identifier] = ACTIONS(656), + [sym_comment] = ACTIONS(82), }, [397] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1612), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1611), + [sym_comment] = ACTIONS(82), }, [398] = { [sym_preproc_include] = STATE(398), @@ -19683,123 +23111,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1614), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1617), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1620), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1623), - [sym_preproc_directive] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_static] = ACTIONS(788), - [anon_sym_auto] = ACTIONS(788), - [anon_sym_register] = ACTIONS(788), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_const] = ACTIONS(791), - [anon_sym_restrict] = ACTIONS(791), - [anon_sym_volatile] = ACTIONS(791), - [anon_sym__Atomic] = ACTIONS(791), - [anon_sym_signed] = ACTIONS(794), - [anon_sym_unsigned] = ACTIONS(794), - [anon_sym_long] = ACTIONS(794), - [anon_sym_short] = ACTIONS(794), - [sym_primitive_type] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(800), - [anon_sym_struct] = ACTIONS(803), - [anon_sym_union] = ACTIONS(806), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_switch] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_sizeof] = ACTIONS(848), - [sym_number_literal] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [sym_null] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1676), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1619), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1624), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1624), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1622), + [sym_preproc_directive] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_typedef] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_static] = ACTIONS(789), + [anon_sym_auto] = ACTIONS(789), + [anon_sym_register] = ACTIONS(789), + [anon_sym_inline] = ACTIONS(789), + [anon_sym_const] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym__Atomic] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(795), + [anon_sym_unsigned] = ACTIONS(795), + [anon_sym_long] = ACTIONS(795), + [anon_sym_short] = ACTIONS(795), + [sym_primitive_type] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(801), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_union] = ACTIONS(807), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_goto] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_sizeof] = ACTIONS(849), + [sym_number_literal] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1675), + [sym_comment] = ACTIONS(82), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1679), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1681), - [sym_preproc_directive] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_auto] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym__Atomic] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1681), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_null] = ACTIONS(1681), - [sym_identifier] = ACTIONS(1681), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1680), + [sym_preproc_directive] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_auto] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1680), + [anon_sym_inline] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1680), + [anon_sym_unsigned] = ACTIONS(1680), + [anon_sym_long] = ACTIONS(1680), + [anon_sym_short] = ACTIONS(1680), + [sym_primitive_type] = 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_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(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1680), + [sym_false] = ACTIONS(1680), + [sym_null] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1680), + [sym_comment] = ACTIONS(82), }, [400] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1683), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1682), + [sym_comment] = ACTIONS(82), }, [401] = { [sym__type_declarator] = STATE(403), @@ -19808,29 +23237,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(403), [sym_type_qualifier] = STATE(641), [aux_sym_type_definition_repeat1] = STATE(641), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1013), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [402] = { [sym_parameter_list] = STATE(407), - [anon_sym_RPAREN] = ACTIONS(1685), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [403] = { [sym_parameter_list] = STATE(407), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [404] = { [sym__type_declarator] = STATE(643), @@ -19839,73 +23291,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(643), [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1013), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1691), - [sym_preproc_directive] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_auto] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_case] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_identifier] = ACTIONS(1691), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1688), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1690), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_typedef] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_auto] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_inline] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_restrict] = ACTIONS(1690), + [anon_sym_volatile] = ACTIONS(1690), + [anon_sym__Atomic] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(1690), + [anon_sym_unsigned] = ACTIONS(1690), + [anon_sym_long] = ACTIONS(1690), + [anon_sym_short] = ACTIONS(1690), + [sym_primitive_type] = 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(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym_true] = ACTIONS(1690), + [sym_false] = ACTIONS(1690), + [sym_null] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(82), }, [406] = { [sym_type_qualifier] = STATE(647), @@ -19930,100 +23405,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(646), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(647), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_RBRACK] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1699), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_RBRACK] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1698), + [sym_false] = ACTIONS(1698), + [sym_null] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1698), + [sym_comment] = ACTIONS(82), }, [407] = { - [anon_sym_RPAREN] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1700), + [sym_comment] = ACTIONS(82), }, [408] = { [sym_parameter_list] = STATE(407), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1707), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1706), + [sym_preproc_directive] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_typedef] = ACTIONS(1706), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_do] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_goto] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_sizeof] = ACTIONS(1706), + [sym_number_literal] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym_true] = ACTIONS(1706), + [sym_false] = ACTIONS(1706), + [sym_null] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(82), }, [410] = { [sym_preproc_include] = STATE(205), @@ -20082,272 +23580,273 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [411] = { [sym_storage_class_specifier] = STATE(650), [sym_type_qualifier] = STATE(650), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [412] = { [sym_storage_class_specifier] = STATE(651), [sym_type_qualifier] = STATE(651), [aux_sym__declaration_specifiers_repeat1] = STATE(651), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [413] = { [aux_sym_sized_type_specifier_repeat1] = STATE(413), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_static] = ACTIONS(884), - [anon_sym_auto] = ACTIONS(884), - [anon_sym_register] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym_signed] = ACTIONS(1711), - [anon_sym_unsigned] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [sym_primitive_type] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_static] = ACTIONS(885), + [anon_sym_auto] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_inline] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(1710), + [anon_sym_unsigned] = ACTIONS(1710), + [anon_sym_long] = ACTIONS(1710), + [anon_sym_short] = ACTIONS(1710), + [sym_primitive_type] = ACTIONS(885), + [sym_identifier] = ACTIONS(885), + [sym_comment] = ACTIONS(82), }, [414] = { [sym_parenthesized_expression] = STATE(652), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [415] = { [sym_parenthesized_expression] = STATE(653), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [416] = { - [anon_sym_LPAREN2] = ACTIONS(1714), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1713), + [sym_comment] = ACTIONS(82), }, [417] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(1716), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(1715), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [418] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [419] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [420] = { [sym__expression] = STATE(658), @@ -20370,66 +23869,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(658), [sym_concatenated_string] = STATE(658), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1722), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1724), - [sym_false] = ACTIONS(1724), - [sym_null] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1724), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1723), + [sym_false] = ACTIONS(1723), + [sym_null] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1723), + [sym_comment] = ACTIONS(82), }, [421] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [422] = { [sym__expression] = STATE(452), @@ -20453,46 +23979,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(72), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [423] = { - [anon_sym_RPAREN] = ACTIONS(1728), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1727), + [sym_comment] = ACTIONS(82), }, [424] = { [aux_sym_parameter_list_repeat1] = STATE(663), - [anon_sym_COMMA] = ACTIONS(1730), - [anon_sym_RPAREN] = ACTIONS(1732), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1731), + [sym_comment] = ACTIONS(82), }, [425] = { - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_COLON] = ACTIONS(1734), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_COLON] = ACTIONS(1733), + [sym_comment] = ACTIONS(82), }, [426] = { [sym__declarator] = STATE(666), @@ -20504,41 +24057,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(666), [sym_abstract_array_declarator] = STATE(667), [sym_parameter_list] = STATE(213), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(433), - [sym_identifier] = ACTIONS(1742), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1741), + [sym_comment] = ACTIONS(82), }, [427] = { [sym_parameter_list] = STATE(438), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1094), + [sym_comment] = ACTIONS(82), }, [428] = { [sym_storage_class_specifier] = STATE(669), [sym_type_qualifier] = STATE(669), [aux_sym__declaration_specifiers_repeat1] = STATE(669), - [anon_sym_COMMA] = ACTIONS(261), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(263), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(264), + [sym_comment] = ACTIONS(82), }, [429] = { [sym_storage_class_specifier] = STATE(146), @@ -20551,57 +24131,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(670), [aux_sym__declaration_specifiers_repeat1] = STATE(146), [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(1077), - [anon_sym_unsigned] = ACTIONS(1077), - [anon_sym_long] = ACTIONS(1077), - [anon_sym_short] = ACTIONS(1077), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [430] = { [aux_sym_sized_type_specifier_repeat1] = STATE(671), - [anon_sym_COMMA] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(309), - [anon_sym_extern] = ACTIONS(311), - [anon_sym_LPAREN2] = ACTIONS(309), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(309), - [anon_sym_static] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(311), - [anon_sym_register] = ACTIONS(311), - [anon_sym_inline] = ACTIONS(311), - [anon_sym_const] = ACTIONS(311), - [anon_sym_restrict] = ACTIONS(311), - [anon_sym_volatile] = ACTIONS(311), - [anon_sym__Atomic] = ACTIONS(311), - [anon_sym_signed] = ACTIONS(1748), - [anon_sym_unsigned] = ACTIONS(1748), - [anon_sym_long] = ACTIONS(1748), - [anon_sym_short] = ACTIONS(1748), - [sym_primitive_type] = ACTIONS(315), - [sym_identifier] = ACTIONS(317), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_LPAREN2] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_static] = ACTIONS(312), + [anon_sym_auto] = ACTIONS(312), + [anon_sym_register] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_const] = ACTIONS(312), + [anon_sym_restrict] = ACTIONS(312), + [anon_sym_volatile] = ACTIONS(312), + [anon_sym__Atomic] = ACTIONS(312), + [anon_sym_signed] = ACTIONS(1747), + [anon_sym_unsigned] = ACTIONS(1747), + [anon_sym_long] = ACTIONS(1747), + [anon_sym_short] = ACTIONS(1747), + [sym_primitive_type] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(318), + [sym_comment] = ACTIONS(82), }, [431] = { [sym_parameter_list] = STATE(438), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1094), + [sym_comment] = ACTIONS(82), }, [432] = { [sym__abstract_declarator] = STATE(672), @@ -20611,15 +24214,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(673), [sym_parameter_list] = STATE(213), [aux_sym_type_definition_repeat1] = STATE(673), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_const] = ACTIONS(1083), - [anon_sym_restrict] = ACTIONS(1083), - [anon_sym_volatile] = ACTIONS(1083), - [anon_sym__Atomic] = ACTIONS(1083), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [sym_comment] = ACTIONS(82), }, [433] = { [sym__expression] = STATE(75), @@ -20642,73 +24245,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [434] = { - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(1753), + [anon_sym_LPAREN2] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1753), + [sym_comment] = ACTIONS(82), }, [435] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1751), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [436] = { [sym_type_qualifier] = STATE(677), @@ -20733,29 +24363,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(676), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(677), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1760), - [sym_false] = ACTIONS(1760), - [sym_null] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1760), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_RBRACK] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(82), }, [437] = { [sym_type_qualifier] = STATE(678), @@ -20780,539 +24433,562 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(676), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(678), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1760), - [sym_false] = ACTIONS(1760), - [sym_null] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1760), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_RBRACK] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(82), }, [438] = { - [anon_sym_COMMA] = ACTIONS(1762), - [anon_sym_RPAREN] = ACTIONS(1762), - [anon_sym_LPAREN2] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1761), + [sym_comment] = ACTIONS(82), }, [439] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [440] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [441] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(1764), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [442] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [443] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [444] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [445] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [446] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [447] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [448] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [449] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [450] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [451] = { [sym__expression] = STATE(690), @@ -21340,191 +25016,218 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(690), [sym_string_literal] = STATE(692), [aux_sym_initializer_pair_repeat1] = STATE(693), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1790), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1785), + [sym_number_literal] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_null] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1789), + [sym_comment] = ACTIONS(82), }, [452] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_EQ] = ACTIONS(1794), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_LT_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_GT_EQ] = ACTIONS(1792), - [anon_sym_AMP_EQ] = ACTIONS(1792), - [anon_sym_CARET_EQ] = ACTIONS(1792), - [anon_sym_PIPE_EQ] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1794), - [anon_sym_EQ_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1794), - [anon_sym_PERCENT] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1791), + [anon_sym_EQ] = ACTIONS(1793), + [anon_sym_COLON] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(1791), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_PERCENT_EQ] = ACTIONS(1791), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_CARET_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1793), + [anon_sym_GT_GT] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_SLASH] = ACTIONS(1793), + [anon_sym_PERCENT] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [453] = { - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_RBRACK] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1798), - [anon_sym_COLON] = ACTIONS(1796), - [anon_sym_QMARK] = ACTIONS(1796), - [anon_sym_STAR_EQ] = ACTIONS(1796), - [anon_sym_SLASH_EQ] = ACTIONS(1796), - [anon_sym_PERCENT_EQ] = ACTIONS(1796), - [anon_sym_PLUS_EQ] = ACTIONS(1796), - [anon_sym_DASH_EQ] = ACTIONS(1796), - [anon_sym_LT_LT_EQ] = ACTIONS(1796), - [anon_sym_GT_GT_EQ] = ACTIONS(1796), - [anon_sym_AMP_EQ] = ACTIONS(1796), - [anon_sym_CARET_EQ] = ACTIONS(1796), - [anon_sym_PIPE_EQ] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1796), - [anon_sym_AMP_AMP] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_GT] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1796), - [anon_sym_GT_EQ] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_SLASH] = ACTIONS(1798), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1796), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_RBRACK] = ACTIONS(1795), + [anon_sym_EQ] = ACTIONS(1797), + [anon_sym_COLON] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(1795), + [anon_sym_STAR_EQ] = ACTIONS(1795), + [anon_sym_SLASH_EQ] = ACTIONS(1795), + [anon_sym_PERCENT_EQ] = ACTIONS(1795), + [anon_sym_PLUS_EQ] = ACTIONS(1795), + [anon_sym_DASH_EQ] = ACTIONS(1795), + [anon_sym_LT_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_GT_EQ] = ACTIONS(1795), + [anon_sym_AMP_EQ] = ACTIONS(1795), + [anon_sym_CARET_EQ] = ACTIONS(1795), + [anon_sym_PIPE_EQ] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_CARET] = ACTIONS(1797), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1797), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1795), + [anon_sym_DASH_GT] = ACTIONS(1795), + [sym_comment] = ACTIONS(82), }, [454] = { [sym_string_literal] = STATE(454), [aux_sym_concatenated_string_repeat1] = STATE(454), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DASH_GT] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(82), }, [455] = { [sym_parameter_list] = STATE(438), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1094), + [sym_comment] = ACTIONS(82), }, [456] = { - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_auto] = ACTIONS(1804), - [anon_sym_register] = ACTIONS(1804), - [anon_sym_inline] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_restrict] = ACTIONS(1804), - [anon_sym_volatile] = ACTIONS(1804), - [anon_sym__Atomic] = ACTIONS(1804), - [anon_sym_COLON] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_auto] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(82), }, [457] = { [sym__expression] = STATE(694), @@ -21547,36 +25250,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(694), [sym_concatenated_string] = STATE(694), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1808), - [sym_false] = ACTIONS(1808), - [sym_null] = ACTIONS(1808), - [sym_identifier] = ACTIONS(1808), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1807), + [sym_false] = ACTIONS(1807), + [sym_null] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(82), }, [458] = { [sym_enumerator] = STATE(696), - [anon_sym_RBRACE] = ACTIONS(1810), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(484), + [sym_comment] = ACTIONS(82), }, [459] = { [aux_sym_enumerator_list_repeat1] = STATE(698), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1810), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1809), + [sym_comment] = ACTIONS(82), }, [460] = { [sym_preproc_if_in_field_declaration_list] = STATE(703), @@ -21597,31 +25354,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(703), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1814), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1816), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1813), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1815), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1817), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [461] = { [sym_preproc_if_in_field_declaration_list] = STATE(706), @@ -21642,69 +25409,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(706), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1820), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1816), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1819), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1815), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1817), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [462] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1822), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1824), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1824), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1824), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1824), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1822), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1821), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1821), + [anon_sym_auto] = ACTIONS(1821), + [anon_sym_register] = ACTIONS(1821), + [anon_sym_inline] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [anon_sym_restrict] = ACTIONS(1821), + [anon_sym_volatile] = ACTIONS(1821), + [anon_sym__Atomic] = ACTIONS(1821), + [anon_sym_signed] = ACTIONS(1821), + [anon_sym_unsigned] = ACTIONS(1821), + [anon_sym_long] = ACTIONS(1821), + [anon_sym_short] = ACTIONS(1821), + [sym_primitive_type] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1821), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1821), + [sym_comment] = ACTIONS(82), }, [463] = { [sym__field_declarator] = STATE(708), [sym_pointer_field_declarator] = STATE(708), [sym_function_field_declarator] = STATE(708), [sym_array_field_declarator] = STATE(708), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1192), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1191), + [sym_comment] = ACTIONS(82), }, [464] = { [sym__field_declarator] = STATE(709), @@ -21713,14 +25517,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(709), [sym_type_qualifier] = STATE(710), [aux_sym_type_definition_repeat1] = STATE(710), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1828), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1191), + [sym_comment] = ACTIONS(82), }, [465] = { [sym__expression] = STATE(711), @@ -21743,88 +25570,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(711), [sym_concatenated_string] = STATE(711), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1832), - [sym_false] = ACTIONS(1832), - [sym_null] = ACTIONS(1832), - [sym_identifier] = ACTIONS(1832), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1829), + [sym_false] = ACTIONS(1829), + [sym_null] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1829), + [sym_comment] = ACTIONS(82), }, [466] = { - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LPAREN2] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_COLON] = ACTIONS(1834), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_COLON] = ACTIONS(1831), + [sym_comment] = ACTIONS(82), }, [467] = { [sym_bitfield_clause] = STATE(715), [sym_parameter_list] = STATE(716), [aux_sym_field_declaration_repeat1] = STATE(717), - [anon_sym_COMMA] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_COLON] = ACTIONS(1190), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(1189), + [sym_comment] = ACTIONS(82), }, [468] = { - [anon_sym_SEMI] = ACTIONS(1838), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1835), + [sym_comment] = ACTIONS(82), }, [469] = { [sym_storage_class_specifier] = STATE(718), [sym_type_qualifier] = STATE(718), [aux_sym__declaration_specifiers_repeat1] = STATE(718), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(645), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_COLON] = ACTIONS(646), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [470] = { - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_auto] = ACTIONS(1844), - [anon_sym_register] = ACTIONS(1844), - [anon_sym_inline] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_restrict] = ACTIONS(1844), - [anon_sym_volatile] = ACTIONS(1844), - [anon_sym__Atomic] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_auto] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_inline] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_restrict] = ACTIONS(1841), + [anon_sym_volatile] = ACTIONS(1841), + [anon_sym__Atomic] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [sym_comment] = ACTIONS(82), }, [471] = { [sym_preproc_if_in_field_declaration_list] = STATE(471), @@ -21843,132 +25697,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(471), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1849), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_auto] = ACTIONS(1852), - [anon_sym_register] = ACTIONS(1852), - [anon_sym_inline] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_restrict] = ACTIONS(1857), - [anon_sym_volatile] = ACTIONS(1857), - [anon_sym__Atomic] = ACTIONS(1857), - [anon_sym_signed] = ACTIONS(1860), - [anon_sym_unsigned] = ACTIONS(1860), - [anon_sym_long] = ACTIONS(1860), - [anon_sym_short] = ACTIONS(1860), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1875), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1843), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1846), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1846), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_auto] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1849), + [anon_sym_inline] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_restrict] = ACTIONS(1854), + [anon_sym_volatile] = ACTIONS(1854), + [anon_sym__Atomic] = ACTIONS(1854), + [anon_sym_signed] = ACTIONS(1857), + [anon_sym_unsigned] = ACTIONS(1857), + [anon_sym_long] = ACTIONS(1857), + [anon_sym_short] = ACTIONS(1857), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1872), + [sym_comment] = ACTIONS(82), }, [472] = { [sym_storage_class_specifier] = STATE(719), [sym_type_qualifier] = STATE(719), [aux_sym__declaration_specifiers_repeat1] = STATE(719), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(645), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_COLON] = ACTIONS(646), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [473] = { [aux_sym_sized_type_specifier_repeat1] = STATE(473), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_static] = ACTIONS(884), - [anon_sym_auto] = ACTIONS(884), - [anon_sym_register] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym_signed] = ACTIONS(1878), - [anon_sym_unsigned] = ACTIONS(1878), - [anon_sym_long] = ACTIONS(1878), - [anon_sym_short] = ACTIONS(1878), - [sym_primitive_type] = ACTIONS(884), - [anon_sym_COLON] = ACTIONS(882), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_static] = ACTIONS(885), + [anon_sym_auto] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_inline] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(883), + [sym_identifier] = ACTIONS(885), + [sym_comment] = ACTIONS(82), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1105), - [sym_preproc_directive] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_typedef] = ACTIONS(1105), - [anon_sym_extern] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_LPAREN2] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_auto] = ACTIONS(1105), - [anon_sym_register] = ACTIONS(1105), - [anon_sym_inline] = ACTIONS(1105), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_restrict] = ACTIONS(1105), - [anon_sym_volatile] = ACTIONS(1105), - [anon_sym__Atomic] = ACTIONS(1105), - [anon_sym_signed] = ACTIONS(1105), - [anon_sym_unsigned] = ACTIONS(1105), - [anon_sym_long] = ACTIONS(1105), - [anon_sym_short] = ACTIONS(1105), - [sym_primitive_type] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1105), - [anon_sym_union] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_case] = ACTIONS(1105), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_goto] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_sizeof] = ACTIONS(1105), - [sym_number_literal] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_null] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1104), + [sym_comment] = ACTIONS(82), }, [475] = { [sym_compound_statement] = STATE(720), @@ -22004,35 +25868,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [476] = { [sym_compound_statement] = STATE(257), @@ -22068,35 +25951,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [477] = { [sym_declaration] = STATE(721), @@ -22131,42 +26033,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1883), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1885), - [sym_false] = ACTIONS(1885), - [sym_null] = ACTIONS(1885), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1882), + [sym_false] = ACTIONS(1882), + [sym_null] = ACTIONS(1882), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [478] = { [sym_compound_statement] = STATE(291), @@ -22202,35 +26114,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [479] = { [sym_compound_statement] = STATE(723), @@ -22266,100 +26197,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1889), - [sym_preproc_directive] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_typedef] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_auto] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_inline] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_restrict] = ACTIONS(1889), - [anon_sym_volatile] = ACTIONS(1889), - [anon_sym__Atomic] = ACTIONS(1889), - [anon_sym_signed] = ACTIONS(1889), - [anon_sym_unsigned] = ACTIONS(1889), - [anon_sym_long] = ACTIONS(1889), - [anon_sym_short] = ACTIONS(1889), - [sym_primitive_type] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_sizeof] = ACTIONS(1889), - [sym_number_literal] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1884), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1886), + [sym_preproc_directive] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_typedef] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_auto] = ACTIONS(1886), + [anon_sym_register] = ACTIONS(1886), + [anon_sym_inline] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_restrict] = ACTIONS(1886), + [anon_sym_volatile] = ACTIONS(1886), + [anon_sym__Atomic] = ACTIONS(1886), + [anon_sym_signed] = ACTIONS(1886), + [anon_sym_unsigned] = ACTIONS(1886), + [anon_sym_long] = ACTIONS(1886), + [anon_sym_short] = ACTIONS(1886), + [sym_primitive_type] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_goto] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_sizeof] = ACTIONS(1886), + [sym_number_literal] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1886), + [sym_comment] = ACTIONS(82), }, [481] = { [sym_parenthesized_expression] = STATE(724), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [482] = { [sym__expression] = STATE(725), @@ -22382,79 +26332,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(725), [sym_concatenated_string] = STATE(725), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1893), - [sym_false] = ACTIONS(1893), - [sym_null] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1893), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1890), + [sym_comment] = ACTIONS(82), }, [483] = { - [anon_sym_COLON] = ACTIONS(1895), - [sym_comment] = ACTIONS(81), + [anon_sym_COLON] = ACTIONS(1892), + [sym_comment] = ACTIONS(82), }, [484] = { [sym_parenthesized_expression] = STATE(727), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [485] = { - [anon_sym_LPAREN2] = ACTIONS(1897), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1894), + [sym_comment] = ACTIONS(82), }, [486] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [487] = { [sym_compound_statement] = STATE(731), @@ -22492,104 +26469,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), [aux_sym_switch_body_repeat1] = STATE(731), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [488] = { [sym_parenthesized_expression] = STATE(732), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [489] = { [sym_parenthesized_expression] = STATE(733), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [490] = { - [anon_sym_LPAREN2] = ACTIONS(1903), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1900), + [sym_comment] = ACTIONS(82), }, [491] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [492] = { - [anon_sym_else] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1214), - [sym_comment] = ACTIONS(81), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1213), + [sym_comment] = ACTIONS(82), }, [493] = { [sym_parenthesized_expression] = STATE(496), - [anon_sym_LPAREN2] = ACTIONS(167), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(168), + [sym_comment] = ACTIONS(82), }, [494] = { [sym__expression] = STATE(738), @@ -22612,126 +26607,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(738), [sym_concatenated_string] = STATE(738), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1911), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_null] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1913), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1910), + [sym_false] = ACTIONS(1910), + [sym_null] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1910), + [sym_comment] = ACTIONS(82), }, [495] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [496] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_typedef] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_LPAREN2] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_auto] = ACTIONS(1919), - [anon_sym_register] = ACTIONS(1919), - [anon_sym_inline] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_restrict] = ACTIONS(1919), - [anon_sym_volatile] = ACTIONS(1919), - [anon_sym__Atomic] = ACTIONS(1919), - [anon_sym_signed] = ACTIONS(1919), - [anon_sym_unsigned] = ACTIONS(1919), - [anon_sym_long] = ACTIONS(1919), - [anon_sym_short] = ACTIONS(1919), - [sym_primitive_type] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_union] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_switch] = ACTIONS(1919), - [anon_sym_case] = ACTIONS(1919), - [anon_sym_default] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_do] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_goto] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_sizeof] = ACTIONS(1919), - [sym_number_literal] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym_true] = ACTIONS(1919), - [sym_false] = ACTIONS(1919), - [sym_null] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1919), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1914), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1916), + [sym_preproc_directive] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym__Atomic] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_case] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1916), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [sym_null] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1916), + [sym_comment] = ACTIONS(82), }, [497] = { [sym__expression] = STATE(741), @@ -22754,66 +26776,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(741), [sym_concatenated_string] = STATE(741), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1925), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1922), + [sym_false] = ACTIONS(1922), + [sym_null] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1922), + [sym_comment] = ACTIONS(82), }, [498] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [499] = { [sym__declarator] = STATE(294), @@ -22822,24 +26871,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(294), [sym_type_qualifier] = STATE(743), [aux_sym_type_definition_repeat1] = STATE(743), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(633), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(634), + [sym_comment] = ACTIONS(82), }, [500] = { [sym_parameter_list] = STATE(302), [aux_sym_declaration_repeat1] = STATE(303), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(643), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(638), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(644), + [sym_comment] = ACTIONS(82), }, [501] = { [sym__expression] = STATE(744), @@ -22862,25 +26934,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(744), [sym_concatenated_string] = STATE(744), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1929), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1931), - [sym_false] = ACTIONS(1931), - [sym_null] = ACTIONS(1931), - [sym_identifier] = ACTIONS(1931), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1928), + [sym_false] = ACTIONS(1928), + [sym_null] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1928), + [sym_comment] = ACTIONS(82), }, [502] = { [sym__expression] = STATE(452), @@ -22904,523 +27003,550 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(104), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [503] = { - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1930), + [sym_comment] = ACTIONS(82), }, [504] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [505] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(1935), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [506] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [507] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [508] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [509] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [510] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [511] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [512] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [513] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [514] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [515] = { [sym_string_literal] = STATE(515), [aux_sym_concatenated_string_repeat1] = STATE(515), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DASH_GT] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(82), }, [516] = { [sym__expression] = STATE(452), @@ -23444,76 +27570,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(39), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_PERCENT_EQ] = ACTIONS(1937), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_CARET_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1939), - [anon_sym_PIPE_PIPE] = ACTIONS(1937), - [anon_sym_AMP_AMP] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_DASH_GT] = ACTIONS(1937), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1934), + [anon_sym_STAR_EQ] = ACTIONS(1934), + [anon_sym_SLASH_EQ] = ACTIONS(1934), + [anon_sym_PERCENT_EQ] = ACTIONS(1934), + [anon_sym_PLUS_EQ] = ACTIONS(1934), + [anon_sym_DASH_EQ] = ACTIONS(1934), + [anon_sym_LT_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_GT_EQ] = ACTIONS(1934), + [anon_sym_AMP_EQ] = ACTIONS(1934), + [anon_sym_CARET_EQ] = ACTIONS(1934), + [anon_sym_PIPE_EQ] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [anon_sym_DOT] = ACTIONS(1934), + [anon_sym_DASH_GT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [517] = { - [anon_sym_COMMA] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_LPAREN2] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_auto] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_inline] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_restrict] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1947), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_COLON] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1944), + [sym_comment] = ACTIONS(82), }, [518] = { [sym__declarator] = STATE(520), @@ -23522,61 +27675,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(520), [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(629), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1349), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(82), }, [519] = { - [anon_sym_COMMA] = ACTIONS(1949), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_SEMI] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_LPAREN2] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_EQ] = ACTIONS(1949), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [sym_comment] = ACTIONS(82), }, [520] = { [sym_parameter_list] = STATE(302), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(1951), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1948), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(1948), + [sym_comment] = ACTIONS(82), }, [521] = { [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_restrict] = ACTIONS(1021), - [anon_sym_volatile] = ACTIONS(1021), - [anon_sym__Atomic] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1024), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1023), + [sym_comment] = ACTIONS(82), }, [522] = { [sym_parameter_list] = STATE(302), - [anon_sym_COMMA] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(643), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(644), + [sym_comment] = ACTIONS(82), }, [523] = { - [anon_sym_COMMA] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [sym_comment] = ACTIONS(82), }, [524] = { [sym__expression] = STATE(75), @@ -23599,76 +27775,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [525] = { - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_LPAREN2] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1959), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_EQ] = ACTIONS(1956), + [sym_comment] = ACTIONS(82), }, [526] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1957), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [527] = { [sym_type_qualifier] = STATE(677), @@ -23693,141 +27896,164 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(749), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(677), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_RBRACK] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1963), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1965), - [sym_false] = ACTIONS(1965), - [sym_null] = ACTIONS(1965), - [sym_identifier] = ACTIONS(1965), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_RBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1960), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1962), + [sym_false] = ACTIONS(1962), + [sym_null] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1962), + [sym_comment] = ACTIONS(82), }, [528] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(279), - [anon_sym_SLASH_EQ] = ACTIONS(279), - [anon_sym_PERCENT_EQ] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(279), - [anon_sym_DASH_EQ] = ACTIONS(279), - [anon_sym_LT_LT_EQ] = ACTIONS(279), - [anon_sym_GT_GT_EQ] = ACTIONS(279), - [anon_sym_AMP_EQ] = ACTIONS(279), - [anon_sym_CARET_EQ] = ACTIONS(279), - [anon_sym_PIPE_EQ] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(278), + [anon_sym_STAR_EQ] = ACTIONS(280), + [anon_sym_SLASH_EQ] = ACTIONS(280), + [anon_sym_PERCENT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_LT_LT_EQ] = ACTIONS(280), + [anon_sym_GT_GT_EQ] = ACTIONS(280), + [anon_sym_AMP_EQ] = ACTIONS(280), + [anon_sym_CARET_EQ] = ACTIONS(280), + [anon_sym_PIPE_EQ] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [529] = { - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1964), + [sym_comment] = ACTIONS(82), }, [530] = { - [ts_builtin_sym_end] = ACTIONS(1969), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1971), - [sym_preproc_directive] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_typedef] = ACTIONS(1971), - [anon_sym_extern] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1971), - [anon_sym_register] = ACTIONS(1971), - [anon_sym_inline] = ACTIONS(1971), - [anon_sym_const] = ACTIONS(1971), - [anon_sym_restrict] = ACTIONS(1971), - [anon_sym_volatile] = ACTIONS(1971), - [anon_sym__Atomic] = ACTIONS(1971), - [anon_sym_signed] = ACTIONS(1971), - [anon_sym_unsigned] = ACTIONS(1971), - [anon_sym_long] = ACTIONS(1971), - [anon_sym_short] = ACTIONS(1971), - [sym_primitive_type] = ACTIONS(1971), - [anon_sym_enum] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_union] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_switch] = ACTIONS(1971), - [anon_sym_case] = ACTIONS(1971), - [anon_sym_default] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_do] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_goto] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_sizeof] = ACTIONS(1971), - [sym_number_literal] = ACTIONS(1969), - [anon_sym_SQUOTE] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_null] = ACTIONS(1971), - [sym_identifier] = ACTIONS(1971), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1966), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1968), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1968), + [sym_comment] = ACTIONS(82), }, [531] = { [aux_sym_declaration_repeat1] = STATE(531), - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1955), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1952), + [sym_comment] = ACTIONS(82), }, [532] = { [sym__expression] = STATE(750), @@ -23850,79 +28076,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(750), [sym_concatenated_string] = STATE(750), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1978), - [sym_false] = ACTIONS(1978), - [sym_null] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1978), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1975), + [sym_false] = ACTIONS(1975), + [sym_null] = ACTIONS(1975), + [sym_identifier] = ACTIONS(1975), + [sym_comment] = ACTIONS(82), }, [533] = { - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_LPAREN2] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_RBRACK] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_COLON] = ACTIONS(1980), - [anon_sym_QMARK] = ACTIONS(1980), - [anon_sym_STAR_EQ] = ACTIONS(1980), - [anon_sym_SLASH_EQ] = ACTIONS(1980), - [anon_sym_PERCENT_EQ] = ACTIONS(1980), - [anon_sym_PLUS_EQ] = ACTIONS(1980), - [anon_sym_DASH_EQ] = ACTIONS(1980), - [anon_sym_LT_LT_EQ] = ACTIONS(1980), - [anon_sym_GT_GT_EQ] = ACTIONS(1980), - [anon_sym_AMP_EQ] = ACTIONS(1980), - [anon_sym_CARET_EQ] = ACTIONS(1980), - [anon_sym_PIPE_EQ] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_CARET] = ACTIONS(1982), - [anon_sym_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1982), - [anon_sym_LT_EQ] = ACTIONS(1980), - [anon_sym_GT_EQ] = ACTIONS(1980), - [anon_sym_LT_LT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_SLASH] = ACTIONS(1982), - [anon_sym_PERCENT] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DOT] = ACTIONS(1980), - [anon_sym_DASH_GT] = ACTIONS(1980), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_LPAREN2] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_EQ] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1977), + [anon_sym_QMARK] = ACTIONS(1977), + [anon_sym_STAR_EQ] = ACTIONS(1977), + [anon_sym_SLASH_EQ] = ACTIONS(1977), + [anon_sym_PERCENT_EQ] = ACTIONS(1977), + [anon_sym_PLUS_EQ] = ACTIONS(1977), + [anon_sym_DASH_EQ] = ACTIONS(1977), + [anon_sym_LT_LT_EQ] = ACTIONS(1977), + [anon_sym_GT_GT_EQ] = ACTIONS(1977), + [anon_sym_AMP_EQ] = ACTIONS(1977), + [anon_sym_CARET_EQ] = ACTIONS(1977), + [anon_sym_PIPE_EQ] = ACTIONS(1977), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_PIPE_PIPE] = ACTIONS(1977), + [anon_sym_AMP_AMP] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym_EQ_EQ] = ACTIONS(1977), + [anon_sym_BANG_EQ] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_LT_EQ] = ACTIONS(1977), + [anon_sym_GT_EQ] = ACTIONS(1977), + [anon_sym_LT_LT] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_PERCENT] = ACTIONS(1979), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(1977), + [anon_sym_DASH_GT] = ACTIONS(1977), + [sym_comment] = ACTIONS(82), }, [534] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1984), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1981), + [sym_comment] = ACTIONS(82), }, [535] = { - [anon_sym_RPAREN] = ACTIONS(1986), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1983), + [sym_comment] = ACTIONS(82), }, [536] = { [sym_type_qualifier] = STATE(73), @@ -23956,77 +28209,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [537] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [538] = { [sym__expression] = STATE(309), @@ -24049,69 +28317,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(309), [sym_concatenated_string] = STATE(309), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_null] = ACTIONS(665), - [sym_identifier] = ACTIONS(665), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(664), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_null] = ACTIONS(666), + [sym_identifier] = ACTIONS(666), + [sym_comment] = ACTIONS(82), }, [539] = { - [anon_sym_COMMA] = ACTIONS(1988), - [anon_sym_RPAREN] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_RBRACK] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(1990), - [anon_sym_COLON] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(1988), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE_PIPE] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_CARET] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1988), - [anon_sym_BANG_EQ] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(1990), - [anon_sym_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_EQ] = ACTIONS(1988), - [anon_sym_LT_LT] = ACTIONS(1990), - [anon_sym_GT_GT] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_SLASH] = ACTIONS(1990), - [anon_sym_PERCENT] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_DOT] = ACTIONS(1988), - [anon_sym_DASH_GT] = ACTIONS(1988), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1985), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_LPAREN2] = 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_comment] = ACTIONS(82), }, [540] = { [sym__expression] = STATE(755), @@ -24134,24 +28429,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(755), [sym_concatenated_string] = STATE(755), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1989), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1991), + [sym_false] = ACTIONS(1991), + [sym_null] = ACTIONS(1991), + [sym_identifier] = ACTIONS(1991), + [sym_comment] = ACTIONS(82), }, [541] = { [sym__expression] = STATE(756), @@ -24174,24 +28496,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(756), [sym_concatenated_string] = STATE(756), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_identifier] = ACTIONS(1998), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_null] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1995), + [sym_comment] = ACTIONS(82), }, [542] = { [sym__expression] = STATE(757), @@ -24214,24 +28563,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(757), [sym_concatenated_string] = STATE(757), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2002), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1997), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1999), + [sym_false] = ACTIONS(1999), + [sym_null] = ACTIONS(1999), + [sym_identifier] = ACTIONS(1999), + [sym_comment] = ACTIONS(82), }, [543] = { [sym__expression] = STATE(758), @@ -24254,24 +28630,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(758), [sym_concatenated_string] = STATE(758), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2006), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2003), + [sym_false] = ACTIONS(2003), + [sym_null] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2003), + [sym_comment] = ACTIONS(82), }, [544] = { [sym__expression] = STATE(759), @@ -24294,24 +28697,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(759), [sym_concatenated_string] = STATE(759), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_null] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2010), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2005), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2007), + [sym_false] = ACTIONS(2007), + [sym_null] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2007), + [sym_comment] = ACTIONS(82), }, [545] = { [sym__expression] = STATE(760), @@ -24334,24 +28764,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(760), [sym_concatenated_string] = STATE(760), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2014), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2011), + [sym_false] = ACTIONS(2011), + [sym_null] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2011), + [sym_comment] = ACTIONS(82), }, [546] = { [sym__expression] = STATE(761), @@ -24374,24 +28831,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(761), [sym_concatenated_string] = STATE(761), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [sym_null] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2018), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2015), + [sym_false] = ACTIONS(2015), + [sym_null] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2015), + [sym_comment] = ACTIONS(82), }, [547] = { [sym__expression] = STATE(762), @@ -24414,24 +28898,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(762), [sym_concatenated_string] = STATE(762), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2022), - [sym_false] = ACTIONS(2022), - [sym_null] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2022), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2019), + [sym_false] = ACTIONS(2019), + [sym_null] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2019), + [sym_comment] = ACTIONS(82), }, [548] = { [sym__expression] = STATE(763), @@ -24454,24 +28965,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(763), [sym_concatenated_string] = STATE(763), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2026), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2021), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2023), + [sym_false] = ACTIONS(2023), + [sym_null] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2023), + [sym_comment] = ACTIONS(82), }, [549] = { [sym__expression] = STATE(764), @@ -24494,24 +29032,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(764), [sym_concatenated_string] = STATE(764), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2030), - [sym_false] = ACTIONS(2030), - [sym_null] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2030), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2027), + [sym_false] = ACTIONS(2027), + [sym_null] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2027), + [sym_comment] = ACTIONS(82), }, [550] = { [sym__expression] = STATE(765), @@ -24534,71 +29099,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(765), [sym_concatenated_string] = STATE(765), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2034), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2031), + [sym_false] = ACTIONS(2031), + [sym_null] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2031), + [sym_comment] = ACTIONS(82), }, [551] = { [sym_string_literal] = STATE(766), [aux_sym_concatenated_string_repeat1] = STATE(766), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_RBRACK] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DASH_GT] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_STAR_EQ] = ACTIONS(750), + [anon_sym_SLASH_EQ] = ACTIONS(750), + [anon_sym_PERCENT_EQ] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [552] = { - [anon_sym_RPAREN] = ACTIONS(2036), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2033), + [sym_comment] = ACTIONS(82), }, [553] = { [sym_type_qualifier] = STATE(73), @@ -24632,77 +29224,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [554] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [555] = { [sym__expression] = STATE(309), @@ -24725,24 +29332,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(309), [sym_concatenated_string] = STATE(309), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_null] = ACTIONS(665), - [sym_identifier] = ACTIONS(665), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(664), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_null] = ACTIONS(666), + [sym_identifier] = ACTIONS(666), + [sym_comment] = ACTIONS(82), }, [556] = { [sym__expression] = STATE(769), @@ -24765,24 +29399,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(769), [sym_concatenated_string] = STATE(769), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2040), - [sym_false] = ACTIONS(2040), - [sym_null] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2040), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_null] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2037), + [sym_comment] = ACTIONS(82), }, [557] = { [sym__expression] = STATE(770), @@ -24805,24 +29466,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(770), [sym_concatenated_string] = STATE(770), [sym_string_literal] = STATE(39), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2044), - [sym_false] = ACTIONS(2044), - [sym_null] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_null] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2041), + [sym_comment] = ACTIONS(82), }, [558] = { [sym__expression] = STATE(771), @@ -24845,24 +29533,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(771), [sym_concatenated_string] = STATE(771), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2048), - [sym_false] = ACTIONS(2048), - [sym_null] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2048), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2045), + [sym_false] = ACTIONS(2045), + [sym_null] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2045), + [sym_comment] = ACTIONS(82), }, [559] = { [sym__expression] = STATE(772), @@ -24885,24 +29600,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(772), [sym_concatenated_string] = STATE(772), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_null] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2052), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_null] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2049), + [sym_comment] = ACTIONS(82), }, [560] = { [sym__expression] = STATE(773), @@ -24925,24 +29667,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(773), [sym_concatenated_string] = STATE(773), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2056), - [sym_false] = ACTIONS(2056), - [sym_null] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2056), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_null] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2053), + [sym_comment] = ACTIONS(82), }, [561] = { [sym__expression] = STATE(774), @@ -24965,24 +29734,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(774), [sym_concatenated_string] = STATE(774), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2060), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_identifier] = ACTIONS(2057), + [sym_comment] = ACTIONS(82), }, [562] = { [sym__expression] = STATE(775), @@ -25005,24 +29801,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(775), [sym_concatenated_string] = STATE(775), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2064), - [sym_false] = ACTIONS(2064), - [sym_null] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2064), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_null] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2061), + [sym_comment] = ACTIONS(82), }, [563] = { [sym__expression] = STATE(776), @@ -25045,24 +29868,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(776), [sym_concatenated_string] = STATE(776), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2068), - [sym_false] = ACTIONS(2068), - [sym_null] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2068), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2065), + [sym_comment] = ACTIONS(82), }, [564] = { [sym__expression] = STATE(777), @@ -25085,24 +29935,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(777), [sym_concatenated_string] = STATE(777), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2072), - [sym_false] = ACTIONS(2072), - [sym_null] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2072), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_null] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2069), + [sym_comment] = ACTIONS(82), }, [565] = { [sym__expression] = STATE(778), @@ -25125,24 +30002,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(778), [sym_concatenated_string] = STATE(778), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_null] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2076), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2073), + [sym_false] = ACTIONS(2073), + [sym_null] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2073), + [sym_comment] = ACTIONS(82), }, [566] = { [sym__expression] = STATE(779), @@ -25165,24 +30069,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(779), [sym_concatenated_string] = STATE(779), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_identifier] = ACTIONS(2077), + [sym_comment] = ACTIONS(82), }, [567] = { [sym__expression] = STATE(780), @@ -25205,334 +30136,361 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(780), [sym_concatenated_string] = STATE(780), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2084), - [sym_false] = ACTIONS(2084), - [sym_null] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2084), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2081), + [sym_false] = ACTIONS(2081), + [sym_null] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2081), + [sym_comment] = ACTIONS(82), }, [568] = { [sym_string_literal] = STATE(781), [aux_sym_concatenated_string_repeat1] = STATE(781), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DASH_GT] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_STAR_EQ] = ACTIONS(750), + [anon_sym_SLASH_EQ] = ACTIONS(750), + [anon_sym_PERCENT_EQ] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [569] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2086), - [sym_comment] = ACTIONS(81), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2083), + [sym_comment] = ACTIONS(82), }, [570] = { - [anon_sym_LF] = ACTIONS(2088), - [sym_preproc_arg] = ACTIONS(2088), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2085), + [sym_preproc_arg] = ACTIONS(2085), + [sym_comment] = ACTIONS(92), }, [571] = { [aux_sym_preproc_params_repeat1] = STATE(784), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(2090), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(2087), + [sym_comment] = ACTIONS(82), }, [572] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2094), - [sym_preproc_directive] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_auto] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_restrict] = ACTIONS(2094), - [anon_sym_volatile] = ACTIONS(2094), - [anon_sym__Atomic] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(2094), - [anon_sym_unsigned] = ACTIONS(2094), - [anon_sym_long] = ACTIONS(2094), - [anon_sym_short] = ACTIONS(2094), - [sym_primitive_type] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = 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(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2094), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2089), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2091), + [sym_preproc_directive] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_LPAREN2] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_auto] = ACTIONS(2091), + [anon_sym_register] = ACTIONS(2091), + [anon_sym_inline] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_restrict] = ACTIONS(2091), + [anon_sym_volatile] = ACTIONS(2091), + [anon_sym__Atomic] = ACTIONS(2091), + [anon_sym_signed] = ACTIONS(2091), + [anon_sym_unsigned] = ACTIONS(2091), + [anon_sym_long] = ACTIONS(2091), + [anon_sym_short] = ACTIONS(2091), + [sym_primitive_type] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_do] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_goto] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2091), + [sym_number_literal] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym_true] = ACTIONS(2091), + [sym_false] = ACTIONS(2091), + [sym_null] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2091), + [sym_comment] = ACTIONS(82), }, [573] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(619), - [sym_preproc_directive] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_typedef] = ACTIONS(619), - [anon_sym_extern] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_LPAREN2] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_static] = ACTIONS(619), - [anon_sym_auto] = ACTIONS(619), - [anon_sym_register] = ACTIONS(619), - [anon_sym_inline] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_restrict] = ACTIONS(619), - [anon_sym_volatile] = ACTIONS(619), - [anon_sym__Atomic] = ACTIONS(619), - [anon_sym_signed] = ACTIONS(619), - [anon_sym_unsigned] = ACTIONS(619), - [anon_sym_long] = ACTIONS(619), - [anon_sym_short] = ACTIONS(619), - [sym_primitive_type] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(619), - [anon_sym_union] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_switch] = ACTIONS(619), - [anon_sym_while] = ACTIONS(619), - [anon_sym_do] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_sizeof] = ACTIONS(619), - [sym_number_literal] = ACTIONS(617), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_null] = ACTIONS(619), - [sym_identifier] = ACTIONS(619), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(620), + [sym_preproc_directive] = ACTIONS(620), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_typedef] = ACTIONS(620), + [anon_sym_extern] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_LPAREN2] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_static] = ACTIONS(620), + [anon_sym_auto] = ACTIONS(620), + [anon_sym_register] = ACTIONS(620), + [anon_sym_inline] = ACTIONS(620), + [anon_sym_const] = ACTIONS(620), + [anon_sym_restrict] = ACTIONS(620), + [anon_sym_volatile] = ACTIONS(620), + [anon_sym__Atomic] = ACTIONS(620), + [anon_sym_signed] = ACTIONS(620), + [anon_sym_unsigned] = ACTIONS(620), + [anon_sym_long] = ACTIONS(620), + [anon_sym_short] = ACTIONS(620), + [sym_primitive_type] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(620), + [anon_sym_struct] = ACTIONS(620), + [anon_sym_union] = ACTIONS(620), + [anon_sym_if] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(620), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(620), + [anon_sym_return] = ACTIONS(620), + [anon_sym_break] = ACTIONS(620), + [anon_sym_continue] = ACTIONS(620), + [anon_sym_goto] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [sym_true] = ACTIONS(620), + [sym_false] = ACTIONS(620), + [sym_null] = ACTIONS(620), + [sym_identifier] = ACTIONS(620), + [sym_comment] = ACTIONS(82), }, [574] = { [aux_sym_string_literal_repeat1] = STATE(289), - [anon_sym_DQUOTE] = ACTIONS(2096), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(623), - [sym_escape_sequence] = ACTIONS(623), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(2093), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(624), + [sym_escape_sequence] = ACTIONS(624), + [sym_comment] = ACTIONS(92), }, [575] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(893), - [sym_preproc_directive] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_typedef] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_LPAREN2] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_static] = ACTIONS(893), - [anon_sym_auto] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_inline] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [anon_sym_restrict] = ACTIONS(893), - [anon_sym_volatile] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(893), - [anon_sym_signed] = ACTIONS(893), - [anon_sym_unsigned] = ACTIONS(893), - [anon_sym_long] = ACTIONS(893), - [anon_sym_short] = ACTIONS(893), - [sym_primitive_type] = ACTIONS(893), - [anon_sym_enum] = ACTIONS(893), - [anon_sym_struct] = ACTIONS(893), - [anon_sym_union] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_switch] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_goto] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_sizeof] = ACTIONS(893), - [sym_number_literal] = ACTIONS(891), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_true] = ACTIONS(893), - [sym_false] = ACTIONS(893), - [sym_null] = ACTIONS(893), - [sym_identifier] = ACTIONS(893), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), + [sym_identifier] = ACTIONS(894), + [sym_comment] = ACTIONS(82), }, [576] = { - [anon_sym_LF] = ACTIONS(2098), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2095), + [sym_comment] = ACTIONS(92), }, [577] = { - [anon_sym_LF] = ACTIONS(2100), - [sym_preproc_arg] = ACTIONS(2102), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2097), + [sym_preproc_arg] = ACTIONS(2099), + [sym_comment] = ACTIONS(92), }, [578] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(915), - [sym_preproc_directive] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_typedef] = ACTIONS(915), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_static] = ACTIONS(915), - [anon_sym_auto] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_inline] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_restrict] = ACTIONS(915), - [anon_sym_volatile] = ACTIONS(915), - [anon_sym__Atomic] = ACTIONS(915), - [anon_sym_signed] = ACTIONS(915), - [anon_sym_unsigned] = ACTIONS(915), - [anon_sym_long] = ACTIONS(915), - [anon_sym_short] = ACTIONS(915), - [sym_primitive_type] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_goto] = ACTIONS(915), - [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(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(913), - [sym_true] = ACTIONS(915), - [sym_false] = ACTIONS(915), - [sym_null] = ACTIONS(915), - [sym_identifier] = ACTIONS(915), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_static] = ACTIONS(916), + [anon_sym_auto] = ACTIONS(916), + [anon_sym_register] = ACTIONS(916), + [anon_sym_inline] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_unsigned] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [sym_primitive_type] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_sizeof] = ACTIONS(916), + [sym_number_literal] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), + [sym_identifier] = ACTIONS(916), + [sym_comment] = ACTIONS(82), }, [579] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2104), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2101), + [sym_comment] = ACTIONS(82), }, [580] = { [sym_preproc_include] = STATE(398), @@ -25593,124 +30551,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [581] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1001), - [sym_preproc_directive] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_typedef] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_LPAREN2] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_auto] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_inline] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_restrict] = ACTIONS(1001), - [anon_sym_volatile] = ACTIONS(1001), - [anon_sym__Atomic] = ACTIONS(1001), - [anon_sym_signed] = ACTIONS(1001), - [anon_sym_unsigned] = ACTIONS(1001), - [anon_sym_long] = ACTIONS(1001), - [anon_sym_short] = ACTIONS(1001), - [sym_primitive_type] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_goto] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_sizeof] = ACTIONS(1001), - [sym_number_literal] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_identifier] = ACTIONS(1001), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1002), + [sym_preproc_directive] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_typedef] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1002), + [anon_sym_auto] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_inline] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_restrict] = ACTIONS(1002), + [anon_sym_volatile] = ACTIONS(1002), + [anon_sym__Atomic] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(1002), + [anon_sym_unsigned] = ACTIONS(1002), + [anon_sym_long] = ACTIONS(1002), + [anon_sym_short] = ACTIONS(1002), + [sym_primitive_type] = ACTIONS(1002), + [anon_sym_enum] = ACTIONS(1002), + [anon_sym_struct] = ACTIONS(1002), + [anon_sym_union] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_switch] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_sizeof] = ACTIONS(1002), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1002), + [sym_false] = ACTIONS(1002), + [sym_null] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1002), + [sym_comment] = ACTIONS(82), }, [582] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2108), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2105), + [sym_comment] = ACTIONS(82), }, [583] = { [sym_preproc_include] = STATE(398), @@ -25771,132 +30730,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2110), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2107), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [584] = { [aux_sym_string_literal_repeat1] = STATE(794), - [anon_sym_DQUOTE] = ACTIONS(2112), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(2114), - [sym_escape_sequence] = ACTIONS(2114), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(2109), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(2111), + [sym_escape_sequence] = ACTIONS(2111), + [sym_comment] = ACTIONS(92), }, [585] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(326), - [sym_preproc_directive] = ACTIONS(326), - [anon_sym_SEMI] = ACTIONS(324), - [anon_sym_typedef] = ACTIONS(326), - [anon_sym_extern] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_LPAREN2] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_static] = ACTIONS(326), - [anon_sym_auto] = ACTIONS(326), - [anon_sym_register] = ACTIONS(326), - [anon_sym_inline] = ACTIONS(326), - [anon_sym_const] = ACTIONS(326), - [anon_sym_restrict] = ACTIONS(326), - [anon_sym_volatile] = ACTIONS(326), - [anon_sym__Atomic] = ACTIONS(326), - [anon_sym_signed] = ACTIONS(326), - [anon_sym_unsigned] = ACTIONS(326), - [anon_sym_long] = ACTIONS(326), - [anon_sym_short] = ACTIONS(326), - [sym_primitive_type] = ACTIONS(326), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(326), - [anon_sym_union] = ACTIONS(326), - [anon_sym_if] = ACTIONS(326), - [anon_sym_switch] = ACTIONS(326), - [anon_sym_while] = ACTIONS(326), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(326), - [anon_sym_return] = ACTIONS(326), - [anon_sym_break] = ACTIONS(326), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_goto] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(324), - [anon_sym_sizeof] = ACTIONS(326), - [sym_number_literal] = ACTIONS(324), - [anon_sym_SQUOTE] = ACTIONS(324), - [anon_sym_DQUOTE] = ACTIONS(324), - [sym_true] = ACTIONS(326), - [sym_false] = ACTIONS(326), - [sym_null] = ACTIONS(326), - [sym_identifier] = ACTIONS(326), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(327), + [sym_preproc_directive] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_typedef] = ACTIONS(327), + [anon_sym_extern] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(325), + [anon_sym_LPAREN2] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_static] = ACTIONS(327), + [anon_sym_auto] = ACTIONS(327), + [anon_sym_register] = ACTIONS(327), + [anon_sym_inline] = ACTIONS(327), + [anon_sym_const] = ACTIONS(327), + [anon_sym_restrict] = ACTIONS(327), + [anon_sym_volatile] = ACTIONS(327), + [anon_sym__Atomic] = ACTIONS(327), + [anon_sym_signed] = ACTIONS(327), + [anon_sym_unsigned] = ACTIONS(327), + [anon_sym_long] = ACTIONS(327), + [anon_sym_short] = ACTIONS(327), + [sym_primitive_type] = 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_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(325), + [anon_sym_SQUOTE] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(325), + [sym_true] = ACTIONS(327), + [sym_false] = ACTIONS(327), + [sym_null] = ACTIONS(327), + [sym_identifier] = ACTIONS(327), + [sym_comment] = ACTIONS(82), }, [586] = { [sym_preproc_params] = STATE(797), - [anon_sym_LF] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(330), - [sym_preproc_arg] = ACTIONS(2118), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(331), + [sym_preproc_arg] = ACTIONS(2115), + [sym_comment] = ACTIONS(92), }, [587] = { [sym_preproc_include] = STATE(800), @@ -25957,62 +30917,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(800), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2120), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [588] = { [sym_preproc_include] = STATE(803), @@ -26073,132 +31034,160 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(803), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2122), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2119), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [589] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(386), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(386), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_typedef] = ACTIONS(386), - [anon_sym_extern] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_LPAREN2] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_static] = ACTIONS(386), - [anon_sym_auto] = ACTIONS(386), - [anon_sym_register] = ACTIONS(386), - [anon_sym_inline] = ACTIONS(386), - [anon_sym_const] = ACTIONS(386), - [anon_sym_restrict] = ACTIONS(386), - [anon_sym_volatile] = ACTIONS(386), - [anon_sym__Atomic] = ACTIONS(386), - [anon_sym_signed] = ACTIONS(386), - [anon_sym_unsigned] = ACTIONS(386), - [anon_sym_long] = ACTIONS(386), - [anon_sym_short] = ACTIONS(386), - [sym_primitive_type] = ACTIONS(386), - [anon_sym_enum] = ACTIONS(386), - [anon_sym_struct] = ACTIONS(386), - [anon_sym_union] = ACTIONS(386), - [anon_sym_if] = ACTIONS(386), - [anon_sym_switch] = ACTIONS(386), - [anon_sym_while] = ACTIONS(386), - [anon_sym_do] = ACTIONS(386), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(386), - [anon_sym_break] = ACTIONS(386), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_goto] = ACTIONS(386), - [anon_sym_AMP] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_DASH_DASH] = ACTIONS(384), - [anon_sym_PLUS_PLUS] = ACTIONS(384), - [anon_sym_sizeof] = ACTIONS(386), - [sym_number_literal] = ACTIONS(384), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [sym_true] = ACTIONS(386), - [sym_false] = ACTIONS(386), - [sym_null] = ACTIONS(386), - [sym_identifier] = ACTIONS(386), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(387), + [sym_preproc_directive] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_static] = ACTIONS(387), + [anon_sym_auto] = ACTIONS(387), + [anon_sym_register] = ACTIONS(387), + [anon_sym_inline] = ACTIONS(387), + [anon_sym_const] = ACTIONS(387), + [anon_sym_restrict] = ACTIONS(387), + [anon_sym_volatile] = ACTIONS(387), + [anon_sym__Atomic] = ACTIONS(387), + [anon_sym_signed] = ACTIONS(387), + [anon_sym_unsigned] = ACTIONS(387), + [anon_sym_long] = ACTIONS(387), + [anon_sym_short] = ACTIONS(387), + [sym_primitive_type] = ACTIONS(387), + [anon_sym_enum] = ACTIONS(387), + [anon_sym_struct] = ACTIONS(387), + [anon_sym_union] = ACTIONS(387), + [anon_sym_if] = ACTIONS(387), + [anon_sym_switch] = ACTIONS(387), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(387), + [anon_sym_for] = ACTIONS(387), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(385), + [anon_sym_PLUS_PLUS] = ACTIONS(385), + [anon_sym_sizeof] = ACTIONS(387), + [sym_number_literal] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(385), + [sym_true] = ACTIONS(387), + [sym_false] = ACTIONS(387), + [sym_null] = ACTIONS(387), + [sym_identifier] = ACTIONS(387), + [sym_comment] = ACTIONS(82), }, [590] = { - [anon_sym_LF] = ACTIONS(2124), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2121), + [sym_comment] = ACTIONS(92), }, [591] = { [sym__type_declarator] = STATE(805), [sym_pointer_type_declarator] = STATE(805), [sym_function_type_declarator] = STATE(805), [sym_array_type_declarator] = STATE(805), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [592] = { [sym_type_qualifier] = STATE(192), @@ -26210,20 +31199,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(806), [aux_sym_type_definition_repeat1] = STATE(192), [aux_sym_sized_type_specifier_repeat1] = STATE(53), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(103), - [anon_sym_unsigned] = ACTIONS(103), - [anon_sym_long] = ACTIONS(103), - [anon_sym_short] = ACTIONS(103), - [sym_primitive_type] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(104), + [anon_sym_unsigned] = ACTIONS(104), + [anon_sym_long] = ACTIONS(104), + [anon_sym_short] = ACTIONS(104), + [sym_primitive_type] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [593] = { [sym_function_definition] = STATE(808), @@ -26240,83 +31244,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [594] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(413), - [sym_preproc_directive] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_typedef] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(411), - [anon_sym_LPAREN2] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_static] = ACTIONS(413), - [anon_sym_auto] = ACTIONS(413), - [anon_sym_register] = ACTIONS(413), - [anon_sym_inline] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_signed] = ACTIONS(413), - [anon_sym_unsigned] = ACTIONS(413), - [anon_sym_long] = ACTIONS(413), - [anon_sym_short] = ACTIONS(413), - [sym_primitive_type] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [anon_sym_if] = ACTIONS(413), - [anon_sym_else] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(413), - [anon_sym_while] = ACTIONS(413), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(413), - [anon_sym_return] = ACTIONS(413), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(411), - [anon_sym_PLUS_PLUS] = ACTIONS(411), - [anon_sym_sizeof] = ACTIONS(413), - [sym_number_literal] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_identifier] = ACTIONS(413), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(414), + [sym_preproc_directive] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_typedef] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LPAREN2] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_static] = ACTIONS(414), + [anon_sym_auto] = ACTIONS(414), + [anon_sym_register] = ACTIONS(414), + [anon_sym_inline] = ACTIONS(414), + [anon_sym_const] = ACTIONS(414), + [anon_sym_restrict] = ACTIONS(414), + [anon_sym_volatile] = ACTIONS(414), + [anon_sym__Atomic] = ACTIONS(414), + [anon_sym_signed] = ACTIONS(414), + [anon_sym_unsigned] = ACTIONS(414), + [anon_sym_long] = ACTIONS(414), + [anon_sym_short] = ACTIONS(414), + [sym_primitive_type] = ACTIONS(414), + [anon_sym_enum] = ACTIONS(414), + [anon_sym_struct] = ACTIONS(414), + [anon_sym_union] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_else] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(414), + [anon_sym_goto] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_sizeof] = ACTIONS(414), + [sym_number_literal] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(412), + [sym_true] = ACTIONS(414), + [sym_false] = ACTIONS(414), + [sym_null] = ACTIONS(414), + [sym_identifier] = ACTIONS(414), + [sym_comment] = ACTIONS(82), }, [595] = { [sym_preproc_include] = STATE(205), @@ -26375,60 +31389,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [596] = { [sym_compound_statement] = STATE(815), @@ -26464,40 +31479,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [597] = { [sym_switch_body] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_comment] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(2137), + [sym_comment] = ACTIONS(82), }, [598] = { [sym_compound_statement] = STATE(819), @@ -26533,39 +31567,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [599] = { - [anon_sym_while] = ACTIONS(2144), - [sym_comment] = ACTIONS(81), + [anon_sym_while] = ACTIONS(2141), + [sym_comment] = ACTIONS(82), }, [600] = { [sym_declaration] = STATE(821), @@ -26600,258 +31653,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [601] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [sym_preproc_directive] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_typedef] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_static] = ACTIONS(551), - [anon_sym_auto] = ACTIONS(551), - [anon_sym_register] = ACTIONS(551), - [anon_sym_inline] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_restrict] = ACTIONS(551), - [anon_sym_volatile] = ACTIONS(551), - [anon_sym__Atomic] = ACTIONS(551), - [anon_sym_signed] = ACTIONS(551), - [anon_sym_unsigned] = ACTIONS(551), - [anon_sym_long] = ACTIONS(551), - [anon_sym_short] = ACTIONS(551), - [sym_primitive_type] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_union] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_goto] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_sizeof] = ACTIONS(551), - [sym_number_literal] = ACTIONS(549), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_null] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(552), + [sym_preproc_directive] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LPAREN2] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_static] = ACTIONS(552), + [anon_sym_auto] = ACTIONS(552), + [anon_sym_register] = ACTIONS(552), + [anon_sym_inline] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_restrict] = ACTIONS(552), + [anon_sym_volatile] = ACTIONS(552), + [anon_sym__Atomic] = ACTIONS(552), + [anon_sym_signed] = ACTIONS(552), + [anon_sym_unsigned] = ACTIONS(552), + [anon_sym_long] = ACTIONS(552), + [anon_sym_short] = ACTIONS(552), + [sym_primitive_type] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_switch] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_do] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_goto] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_sizeof] = ACTIONS(552), + [sym_number_literal] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(550), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_null] = ACTIONS(552), + [sym_identifier] = ACTIONS(552), + [sym_comment] = ACTIONS(82), }, [602] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [603] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(591), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(591), - [sym_preproc_directive] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_typedef] = ACTIONS(591), - [anon_sym_extern] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_LPAREN2] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_static] = ACTIONS(591), - [anon_sym_auto] = ACTIONS(591), - [anon_sym_register] = ACTIONS(591), - [anon_sym_inline] = ACTIONS(591), - [anon_sym_const] = ACTIONS(591), - [anon_sym_restrict] = ACTIONS(591), - [anon_sym_volatile] = ACTIONS(591), - [anon_sym__Atomic] = ACTIONS(591), - [anon_sym_signed] = ACTIONS(591), - [anon_sym_unsigned] = ACTIONS(591), - [anon_sym_long] = ACTIONS(591), - [anon_sym_short] = ACTIONS(591), - [sym_primitive_type] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(591), - [anon_sym_union] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_switch] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_goto] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_sizeof] = ACTIONS(591), - [sym_number_literal] = ACTIONS(589), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DQUOTE] = ACTIONS(589), - [sym_true] = ACTIONS(591), - [sym_false] = ACTIONS(591), - [sym_null] = ACTIONS(591), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(592), + [sym_preproc_directive] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_typedef] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LPAREN2] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_static] = ACTIONS(592), + [anon_sym_auto] = ACTIONS(592), + [anon_sym_register] = ACTIONS(592), + [anon_sym_inline] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_restrict] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(592), + [anon_sym__Atomic] = ACTIONS(592), + [anon_sym_signed] = ACTIONS(592), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_else] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_goto] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(592), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(590), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_null] = ACTIONS(592), + [sym_identifier] = ACTIONS(592), + [sym_comment] = ACTIONS(82), }, [604] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(595), - [sym_preproc_directive] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_typedef] = ACTIONS(595), - [anon_sym_extern] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_static] = ACTIONS(595), - [anon_sym_auto] = ACTIONS(595), - [anon_sym_register] = ACTIONS(595), - [anon_sym_inline] = ACTIONS(595), - [anon_sym_const] = ACTIONS(595), - [anon_sym_restrict] = ACTIONS(595), - [anon_sym_volatile] = ACTIONS(595), - [anon_sym__Atomic] = ACTIONS(595), - [anon_sym_signed] = ACTIONS(595), - [anon_sym_unsigned] = ACTIONS(595), - [anon_sym_long] = ACTIONS(595), - [anon_sym_short] = ACTIONS(595), - [sym_primitive_type] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(595), - [anon_sym_union] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(595), - [anon_sym_while] = ACTIONS(595), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_sizeof] = ACTIONS(595), - [sym_number_literal] = ACTIONS(593), - [anon_sym_SQUOTE] = ACTIONS(593), - [anon_sym_DQUOTE] = ACTIONS(593), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_null] = ACTIONS(595), - [sym_identifier] = ACTIONS(595), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(596), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(596), + [sym_preproc_directive] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_typedef] = ACTIONS(596), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_static] = ACTIONS(596), + [anon_sym_auto] = ACTIONS(596), + [anon_sym_register] = ACTIONS(596), + [anon_sym_inline] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_restrict] = ACTIONS(596), + [anon_sym_volatile] = ACTIONS(596), + [anon_sym__Atomic] = ACTIONS(596), + [anon_sym_signed] = ACTIONS(596), + [anon_sym_unsigned] = ACTIONS(596), + [anon_sym_long] = ACTIONS(596), + [anon_sym_short] = ACTIONS(596), + [sym_primitive_type] = 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_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(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_null] = ACTIONS(596), + [sym_identifier] = ACTIONS(596), + [sym_comment] = ACTIONS(82), }, [605] = { - [anon_sym_SEMI] = ACTIONS(2154), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2151), + [sym_comment] = ACTIONS(82), }, [606] = { [sym_compound_statement] = STATE(825), @@ -26887,166 +31950,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [607] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_typedef] = ACTIONS(627), - [anon_sym_extern] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_LPAREN2] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_static] = ACTIONS(627), - [anon_sym_auto] = ACTIONS(627), - [anon_sym_register] = ACTIONS(627), - [anon_sym_inline] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_restrict] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(627), - [anon_sym__Atomic] = ACTIONS(627), - [anon_sym_signed] = ACTIONS(627), - [anon_sym_unsigned] = ACTIONS(627), - [anon_sym_long] = ACTIONS(627), - [anon_sym_short] = ACTIONS(627), - [sym_primitive_type] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_struct] = ACTIONS(627), - [anon_sym_union] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_while] = ACTIONS(627), - [anon_sym_do] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(627), - [sym_number_literal] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_null] = ACTIONS(627), - [sym_identifier] = ACTIONS(627), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(628), + [sym_preproc_directive] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_typedef] = ACTIONS(628), + [anon_sym_extern] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_LPAREN2] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_static] = ACTIONS(628), + [anon_sym_auto] = ACTIONS(628), + [anon_sym_register] = ACTIONS(628), + [anon_sym_inline] = ACTIONS(628), + [anon_sym_const] = ACTIONS(628), + [anon_sym_restrict] = ACTIONS(628), + [anon_sym_volatile] = ACTIONS(628), + [anon_sym__Atomic] = ACTIONS(628), + [anon_sym_signed] = ACTIONS(628), + [anon_sym_unsigned] = ACTIONS(628), + [anon_sym_long] = ACTIONS(628), + [anon_sym_short] = ACTIONS(628), + [sym_primitive_type] = ACTIONS(628), + [anon_sym_enum] = ACTIONS(628), + [anon_sym_struct] = ACTIONS(628), + [anon_sym_union] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_do] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_goto] = ACTIONS(628), + [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(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_null] = ACTIONS(628), + [sym_identifier] = ACTIONS(628), + [sym_comment] = ACTIONS(82), }, [608] = { [sym_compound_statement] = STATE(827), [sym_parameter_list] = STATE(302), [aux_sym_declaration_repeat1] = STATE(828), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(643), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(644), + [sym_comment] = ACTIONS(82), }, [609] = { [aux_sym_declaration_repeat1] = STATE(828), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(2156), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(2153), + [sym_comment] = ACTIONS(82), }, [610] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(655), - [sym_preproc_directive] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_typedef] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_auto] = ACTIONS(655), - [anon_sym_register] = ACTIONS(655), - [anon_sym_inline] = ACTIONS(655), - [anon_sym_const] = ACTIONS(655), - [anon_sym_restrict] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym__Atomic] = ACTIONS(655), - [anon_sym_signed] = ACTIONS(655), - [anon_sym_unsigned] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [sym_primitive_type] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(655), - [anon_sym_union] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_goto] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(655), - [sym_number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_null] = ACTIONS(655), - [sym_identifier] = ACTIONS(655), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(656), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(656), + [sym_preproc_directive] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_typedef] = ACTIONS(656), + [anon_sym_extern] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_static] = ACTIONS(656), + [anon_sym_auto] = ACTIONS(656), + [anon_sym_register] = ACTIONS(656), + [anon_sym_inline] = ACTIONS(656), + [anon_sym_const] = ACTIONS(656), + [anon_sym_restrict] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym__Atomic] = ACTIONS(656), + [anon_sym_signed] = ACTIONS(656), + [anon_sym_unsigned] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [sym_primitive_type] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_struct] = ACTIONS(656), + [anon_sym_union] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_else] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_goto] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_sizeof] = ACTIONS(656), + [sym_number_literal] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_null] = ACTIONS(656), + [sym_identifier] = ACTIONS(656), + [sym_comment] = ACTIONS(82), }, [611] = { [sym_preproc_include] = STATE(611), @@ -27105,64 +32187,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(611), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2158), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2164), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2167), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2167), - [sym_preproc_directive] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_typedef] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_LPAREN2] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_static] = ACTIONS(788), - [anon_sym_auto] = ACTIONS(788), - [anon_sym_register] = ACTIONS(788), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_const] = ACTIONS(791), - [anon_sym_restrict] = ACTIONS(791), - [anon_sym_volatile] = ACTIONS(791), - [anon_sym__Atomic] = ACTIONS(791), - [anon_sym_signed] = ACTIONS(794), - [anon_sym_unsigned] = ACTIONS(794), - [anon_sym_long] = ACTIONS(794), - [anon_sym_short] = ACTIONS(794), - [sym_primitive_type] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(800), - [anon_sym_struct] = ACTIONS(803), - [anon_sym_union] = ACTIONS(806), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2191), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_goto] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_sizeof] = ACTIONS(848), - [sym_number_literal] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym_true] = ACTIONS(2215), - [sym_false] = ACTIONS(2215), - [sym_null] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2218), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2155), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2158), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2164), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2164), + [sym_preproc_directive] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_typedef] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LPAREN2] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_static] = ACTIONS(789), + [anon_sym_auto] = ACTIONS(789), + [anon_sym_register] = ACTIONS(789), + [anon_sym_inline] = ACTIONS(789), + [anon_sym_const] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym__Atomic] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(795), + [anon_sym_unsigned] = ACTIONS(795), + [anon_sym_long] = ACTIONS(795), + [anon_sym_short] = ACTIONS(795), + [sym_primitive_type] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(801), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_union] = ACTIONS(807), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_goto] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_sizeof] = ACTIONS(849), + [sym_number_literal] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(858), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2215), + [sym_comment] = ACTIONS(82), }, [612] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2218), + [sym_comment] = ACTIONS(82), }, [613] = { [sym_preproc_include] = STATE(398), @@ -27223,137 +32306,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [614] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1009), - [sym_preproc_directive] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_auto] = ACTIONS(1009), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_inline] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_restrict] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1009), - [anon_sym_signed] = ACTIONS(1009), - [anon_sym_unsigned] = ACTIONS(1009), - [anon_sym_long] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [sym_primitive_type] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_goto] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1009), - [sym_number_literal] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym_true] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [sym_null] = ACTIONS(1009), - [sym_identifier] = ACTIONS(1009), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1010), + [sym_preproc_directive] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_typedef] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_auto] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_inline] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_restrict] = ACTIONS(1010), + [anon_sym_volatile] = ACTIONS(1010), + [anon_sym__Atomic] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(1010), + [anon_sym_unsigned] = ACTIONS(1010), + [anon_sym_long] = ACTIONS(1010), + [anon_sym_short] = ACTIONS(1010), + [sym_primitive_type] = ACTIONS(1010), + [anon_sym_enum] = ACTIONS(1010), + [anon_sym_struct] = ACTIONS(1010), + [anon_sym_union] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_goto] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_sizeof] = ACTIONS(1010), + [sym_number_literal] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym_true] = ACTIONS(1010), + [sym_false] = ACTIONS(1010), + [sym_null] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1010), + [sym_comment] = ACTIONS(82), }, [615] = { [sym_parameter_list] = STATE(407), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [616] = { [sym__type_declarator] = STATE(831), [sym_pointer_type_declarator] = STATE(831), [sym_function_type_declarator] = STATE(831), [sym_array_type_declarator] = STATE(831), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [617] = { [sym_preproc_include] = STATE(833), @@ -27412,118 +32523,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(833), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [618] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1033), - [sym_preproc_directive] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_typedef] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_LPAREN2] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_auto] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_inline] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_restrict] = ACTIONS(1033), - [anon_sym_volatile] = ACTIONS(1033), - [anon_sym__Atomic] = ACTIONS(1033), - [anon_sym_signed] = ACTIONS(1033), - [anon_sym_unsigned] = ACTIONS(1033), - [anon_sym_long] = ACTIONS(1033), - [anon_sym_short] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_switch] = 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(1031), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [sym_null] = ACTIONS(1033), - [sym_identifier] = ACTIONS(1033), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_identifier] = ACTIONS(1032), + [sym_comment] = ACTIONS(82), }, [619] = { [sym__declarator] = STATE(394), @@ -27531,184 +32643,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(394), [sym_array_declarator] = STATE(394), [sym_init_declarator] = STATE(395), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [sym_identifier] = ACTIONS(993), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(994), + [sym_comment] = ACTIONS(82), }, [620] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1057), - [sym_preproc_directive] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_typedef] = ACTIONS(1057), - [anon_sym_extern] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_auto] = ACTIONS(1057), - [anon_sym_register] = ACTIONS(1057), - [anon_sym_inline] = ACTIONS(1057), - [anon_sym_const] = ACTIONS(1057), - [anon_sym_restrict] = ACTIONS(1057), - [anon_sym_volatile] = ACTIONS(1057), - [anon_sym__Atomic] = ACTIONS(1057), - [anon_sym_signed] = ACTIONS(1057), - [anon_sym_unsigned] = ACTIONS(1057), - [anon_sym_long] = ACTIONS(1057), - [anon_sym_short] = ACTIONS(1057), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [anon_sym_struct] = ACTIONS(1057), - [anon_sym_union] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_goto] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_sizeof] = ACTIONS(1057), - [sym_number_literal] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1057), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [sym_comment] = ACTIONS(82), }, [621] = { [sym_parenthesized_expression] = STATE(834), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [622] = { [sym_parenthesized_expression] = STATE(835), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [623] = { - [anon_sym_LPAREN2] = ACTIONS(2229), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(2226), + [sym_comment] = ACTIONS(82), }, [624] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(2231), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [625] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [626] = { [sym_compound_statement] = STATE(840), @@ -27746,203 +32885,221 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), [aux_sym_switch_body_repeat1] = STATE(840), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [627] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [sym_null] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1236), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [sym_null] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1235), + [sym_comment] = ACTIONS(82), }, [628] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(987), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [629] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [sym_null] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [sym_null] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1239), + [sym_comment] = ACTIONS(82), }, [630] = { [sym_parenthesized_expression] = STATE(842), - [anon_sym_LPAREN2] = ACTIONS(2237), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(2234), + [sym_comment] = ACTIONS(82), }, [631] = { [sym__expression] = STATE(844), @@ -27965,479 +33122,506 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(844), [sym_concatenated_string] = STATE(844), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2243), - [sym_false] = ACTIONS(2243), - [sym_null] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2243), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [sym_null] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2240), + [sym_comment] = ACTIONS(82), }, [632] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [633] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1274), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym__Atomic] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_sizeof] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [sym_comment] = ACTIONS(82), }, [634] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [sym_null] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1322), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [sym_primitive_type] = 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_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(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1321), + [sym_comment] = ACTIONS(82), }, [635] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1343), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_null] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1342), + [sym_comment] = ACTIONS(82), }, [636] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [sym_primitive_type] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_do] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [sym_null] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1355), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [sym_null] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(82), }, [637] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1371), - [sym_preproc_directive] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_typedef] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_auto] = ACTIONS(1371), - [anon_sym_register] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_restrict] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym__Atomic] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [sym_primitive_type] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_goto] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_sizeof] = ACTIONS(1371), - [sym_number_literal] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), - [sym_null] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1371), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(82), }, [638] = { [aux_sym_declaration_repeat1] = STATE(531), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(2247), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_comment] = ACTIONS(82), }, [639] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2251), - [sym_preproc_directive] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_typedef] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_LPAREN2] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_auto] = ACTIONS(2251), - [anon_sym_register] = ACTIONS(2251), - [anon_sym_inline] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_restrict] = ACTIONS(2251), - [anon_sym_volatile] = ACTIONS(2251), - [anon_sym__Atomic] = ACTIONS(2251), - [anon_sym_signed] = ACTIONS(2251), - [anon_sym_unsigned] = ACTIONS(2251), - [anon_sym_long] = ACTIONS(2251), - [anon_sym_short] = ACTIONS(2251), - [sym_primitive_type] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_goto] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_sizeof] = ACTIONS(2251), - [sym_number_literal] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2251), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2246), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2248), + [sym_preproc_directive] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_typedef] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_auto] = ACTIONS(2248), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_inline] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_restrict] = ACTIONS(2248), + [anon_sym_volatile] = ACTIONS(2248), + [anon_sym__Atomic] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(2248), + [anon_sym_unsigned] = ACTIONS(2248), + [anon_sym_long] = ACTIONS(2248), + [anon_sym_short] = ACTIONS(2248), + [sym_primitive_type] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2248), + [anon_sym_union] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_switch] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_goto] = ACTIONS(2248), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_sizeof] = ACTIONS(2248), + [sym_number_literal] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [sym_null] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2248), + [sym_comment] = ACTIONS(82), }, [640] = { - [ts_builtin_sym_end] = ACTIONS(2253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2255), - [sym_preproc_directive] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_typedef] = ACTIONS(2255), - [anon_sym_extern] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_auto] = ACTIONS(2255), - [anon_sym_register] = ACTIONS(2255), - [anon_sym_inline] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_restrict] = ACTIONS(2255), - [anon_sym_volatile] = ACTIONS(2255), - [anon_sym__Atomic] = ACTIONS(2255), - [anon_sym_signed] = ACTIONS(2255), - [anon_sym_unsigned] = ACTIONS(2255), - [anon_sym_long] = ACTIONS(2255), - [anon_sym_short] = ACTIONS(2255), - [sym_primitive_type] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_goto] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_sizeof] = ACTIONS(2255), - [sym_number_literal] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2255), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2250), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2252), + [sym_preproc_directive] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_typedef] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_auto] = ACTIONS(2252), + [anon_sym_register] = ACTIONS(2252), + [anon_sym_inline] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_restrict] = ACTIONS(2252), + [anon_sym_volatile] = ACTIONS(2252), + [anon_sym__Atomic] = ACTIONS(2252), + [anon_sym_signed] = ACTIONS(2252), + [anon_sym_unsigned] = ACTIONS(2252), + [anon_sym_long] = ACTIONS(2252), + [anon_sym_short] = ACTIONS(2252), + [sym_primitive_type] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_switch] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_goto] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym_true] = ACTIONS(2252), + [sym_false] = ACTIONS(2252), + [sym_null] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2252), + [sym_comment] = ACTIONS(82), }, [641] = { [sym__type_declarator] = STATE(643), @@ -28446,29 +33630,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_type_declarator] = STATE(643), [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1013), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [642] = { - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_LPAREN2] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [sym_comment] = ACTIONS(82), }, [643] = { [sym_parameter_list] = STATE(407), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [644] = { [sym__expression] = STATE(75), @@ -28491,73 +33698,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [645] = { - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [sym_comment] = ACTIONS(82), }, [646] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2261), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2258), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [647] = { [sym_type_qualifier] = STATE(677), @@ -28582,181 +33816,204 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(849), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(677), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_null] = ACTIONS(2269), - [sym_identifier] = ACTIONS(2269), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_RBRACK] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2266), + [sym_false] = ACTIONS(2266), + [sym_null] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2266), + [sym_comment] = ACTIONS(82), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(2271), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2273), - [sym_preproc_directive] = ACTIONS(2273), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_typedef] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_LPAREN2] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_auto] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_inline] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_restrict] = ACTIONS(2273), - [anon_sym_volatile] = ACTIONS(2273), - [anon_sym__Atomic] = ACTIONS(2273), - [anon_sym_signed] = ACTIONS(2273), - [anon_sym_unsigned] = ACTIONS(2273), - [anon_sym_long] = ACTIONS(2273), - [anon_sym_short] = ACTIONS(2273), - [sym_primitive_type] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_case] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2271), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_sizeof] = ACTIONS(2273), - [sym_number_literal] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_null] = ACTIONS(2273), - [sym_identifier] = ACTIONS(2273), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2268), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2270), + [sym_preproc_directive] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_typedef] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_auto] = ACTIONS(2270), + [anon_sym_register] = ACTIONS(2270), + [anon_sym_inline] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_signed] = ACTIONS(2270), + [anon_sym_unsigned] = ACTIONS(2270), + [anon_sym_long] = ACTIONS(2270), + [anon_sym_short] = ACTIONS(2270), + [sym_primitive_type] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_switch] = ACTIONS(2270), + [anon_sym_case] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_do] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_goto] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_sizeof] = ACTIONS(2270), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_true] = ACTIONS(2270), + [sym_false] = ACTIONS(2270), + [sym_null] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2270), + [sym_comment] = ACTIONS(82), }, [649] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2277), - [sym_preproc_directive] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_typedef] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LPAREN2] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_auto] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_inline] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_restrict] = ACTIONS(2277), - [anon_sym_volatile] = ACTIONS(2277), - [anon_sym__Atomic] = ACTIONS(2277), - [anon_sym_signed] = ACTIONS(2277), - [anon_sym_unsigned] = ACTIONS(2277), - [anon_sym_long] = ACTIONS(2277), - [anon_sym_short] = ACTIONS(2277), - [sym_primitive_type] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_goto] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_sizeof] = ACTIONS(2277), - [sym_number_literal] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym_true] = ACTIONS(2277), - [sym_false] = ACTIONS(2277), - [sym_null] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2277), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2272), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2274), + [sym_preproc_directive] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_auto] = ACTIONS(2274), + [anon_sym_register] = ACTIONS(2274), + [anon_sym_inline] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_restrict] = ACTIONS(2274), + [anon_sym_volatile] = ACTIONS(2274), + [anon_sym__Atomic] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2274), + [anon_sym_unsigned] = ACTIONS(2274), + [anon_sym_long] = ACTIONS(2274), + [anon_sym_short] = ACTIONS(2274), + [sym_primitive_type] = ACTIONS(2274), + [anon_sym_enum] = ACTIONS(2274), + [anon_sym_struct] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_switch] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_do] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_sizeof] = ACTIONS(2274), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [sym_null] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2274), + [sym_comment] = ACTIONS(82), }, [650] = { [sym_storage_class_specifier] = STATE(650), [sym_type_qualifier] = STATE(650), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [anon_sym_extern] = ACTIONS(866), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_const] = ACTIONS(869), - [anon_sym_restrict] = ACTIONS(869), - [anon_sym_volatile] = ACTIONS(869), - [anon_sym__Atomic] = ACTIONS(869), - [sym_identifier] = ACTIONS(872), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(867), + [anon_sym_auto] = ACTIONS(867), + [anon_sym_register] = ACTIONS(867), + [anon_sym_inline] = ACTIONS(867), + [anon_sym_const] = ACTIONS(870), + [anon_sym_restrict] = ACTIONS(870), + [anon_sym_volatile] = ACTIONS(870), + [anon_sym__Atomic] = ACTIONS(870), + [sym_identifier] = ACTIONS(873), + [sym_comment] = ACTIONS(82), }, [651] = { [sym_storage_class_specifier] = STATE(650), [sym_type_qualifier] = STATE(650), [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1500), - [sym_comment] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(1499), + [sym_comment] = ACTIONS(82), }, [652] = { [sym_compound_statement] = STATE(850), @@ -28792,35 +34049,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [653] = { [sym_compound_statement] = STATE(257), @@ -28856,35 +34132,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [654] = { [sym_declaration] = STATE(851), @@ -28919,42 +34214,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2281), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2283), - [sym_false] = ACTIONS(2283), - [sym_null] = ACTIONS(2283), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [655] = { [sym_compound_statement] = STATE(291), @@ -28990,35 +34295,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [656] = { [sym_compound_statement] = STATE(723), @@ -29054,35 +34378,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [657] = { [sym__expression] = STATE(854), @@ -29105,66 +34448,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(854), [sym_concatenated_string] = STATE(854), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2289), - [sym_false] = ACTIONS(2289), - [sym_null] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2289), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2286), + [sym_false] = ACTIONS(2286), + [sym_null] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2286), + [sym_comment] = ACTIONS(82), }, [658] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [659] = { [sym__expression] = STATE(856), @@ -29187,25 +34557,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(856), [sym_concatenated_string] = STATE(856), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2295), - [sym_false] = ACTIONS(2295), - [sym_null] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2295), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2290), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(82), }, [660] = { [sym__expression] = STATE(452), @@ -29229,56 +34626,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(72), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_PERCENT_EQ] = ACTIONS(1937), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_CARET_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(1937), - [anon_sym_AMP_AMP] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_DASH_GT] = ACTIONS(1937), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1934), + [anon_sym_STAR_EQ] = ACTIONS(1934), + [anon_sym_SLASH_EQ] = ACTIONS(1934), + [anon_sym_PERCENT_EQ] = ACTIONS(1934), + [anon_sym_PLUS_EQ] = ACTIONS(1934), + [anon_sym_DASH_EQ] = ACTIONS(1934), + [anon_sym_LT_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_GT_EQ] = ACTIONS(1934), + [anon_sym_AMP_EQ] = ACTIONS(1934), + [anon_sym_CARET_EQ] = ACTIONS(1934), + [anon_sym_PIPE_EQ] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [anon_sym_DOT] = ACTIONS(1934), + [anon_sym_DASH_GT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [661] = { [sym__declaration_specifiers] = STATE(426), @@ -29293,43 +34717,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(428), [aux_sym__declaration_specifiers_repeat1] = STATE(429), [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(1077), - [anon_sym_unsigned] = ACTIONS(1077), - [anon_sym_long] = ACTIONS(1077), - [anon_sym_short] = ACTIONS(1077), - [sym_primitive_type] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2298), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [662] = { - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_RPAREN] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_EQ] = ACTIONS(2303), - [anon_sym_COLON] = ACTIONS(2303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_RPAREN] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_LPAREN2] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_EQ] = ACTIONS(2300), + [anon_sym_COLON] = ACTIONS(2300), + [sym_comment] = ACTIONS(82), }, [663] = { [aux_sym_parameter_list_repeat1] = STATE(859), - [anon_sym_COMMA] = ACTIONS(1730), - [anon_sym_RPAREN] = ACTIONS(2305), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(2302), + [sym_comment] = ACTIONS(82), }, [664] = { [sym__declaration_specifiers] = STATE(426), @@ -29353,30 +34787,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(428), [aux_sym__declaration_specifiers_repeat1] = STATE(429), [aux_sym_sized_type_specifier_repeat1] = STATE(430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1075), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(1077), - [anon_sym_unsigned] = ACTIONS(1077), - [anon_sym_long] = ACTIONS(1077), - [anon_sym_short] = ACTIONS(1077), - [sym_primitive_type] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(2309), - [sym_comment] = ACTIONS(81), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(2306), + [sym_comment] = ACTIONS(82), }, [665] = { [sym__declarator] = STATE(294), @@ -29390,134 +34834,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(862), [sym_parameter_list] = STATE(213), [aux_sym_type_definition_repeat1] = STATE(862), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(633), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(634), + [sym_comment] = ACTIONS(82), }, [666] = { [sym_parameter_list] = STATE(302), - [anon_sym_COMMA] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(641), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2308), + [anon_sym_RPAREN] = ACTIONS(2308), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [sym_comment] = ACTIONS(82), }, [667] = { [sym_parameter_list] = STATE(438), - [anon_sym_COMMA] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2308), + [anon_sym_RPAREN] = ACTIONS(2308), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1094), + [sym_comment] = ACTIONS(82), }, [668] = { - [anon_sym_COMMA] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RPAREN] = ACTIONS(2310), + [anon_sym_LPAREN2] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [sym_comment] = ACTIONS(82), }, [669] = { [sym_storage_class_specifier] = STATE(863), [sym_type_qualifier] = STATE(863), [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [anon_sym_COMMA] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [670] = { [sym_storage_class_specifier] = STATE(864), [sym_type_qualifier] = STATE(864), [aux_sym__declaration_specifiers_repeat1] = STATE(864), - [anon_sym_COMMA] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(647), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(648), + [sym_comment] = ACTIONS(82), }, [671] = { [aux_sym_sized_type_specifier_repeat1] = STATE(671), - [anon_sym_COMMA] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(882), - [anon_sym_static] = ACTIONS(884), - [anon_sym_auto] = ACTIONS(884), - [anon_sym_register] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym_signed] = ACTIONS(2315), - [anon_sym_unsigned] = ACTIONS(2315), - [anon_sym_long] = ACTIONS(2315), - [anon_sym_short] = ACTIONS(2315), - [sym_primitive_type] = ACTIONS(884), - [sym_identifier] = ACTIONS(884), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(883), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_static] = ACTIONS(885), + [anon_sym_auto] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_inline] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(2312), + [anon_sym_unsigned] = ACTIONS(2312), + [anon_sym_long] = ACTIONS(2312), + [anon_sym_short] = ACTIONS(2312), + [sym_primitive_type] = ACTIONS(885), + [sym_identifier] = ACTIONS(885), + [sym_comment] = ACTIONS(82), }, [672] = { [sym_parameter_list] = STATE(438), - [anon_sym_COMMA] = ACTIONS(2318), - [anon_sym_RPAREN] = ACTIONS(2318), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1094), + [sym_comment] = ACTIONS(82), }, [673] = { [sym_type_qualifier] = STATE(673), [aux_sym_type_definition_repeat1] = STATE(673), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_restrict] = ACTIONS(2320), - [anon_sym_volatile] = ACTIONS(2320), - [anon_sym__Atomic] = ACTIONS(2320), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [sym_comment] = ACTIONS(82), }, [674] = { - [anon_sym_COMMA] = ACTIONS(2323), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_LPAREN2] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_RPAREN] = ACTIONS(2320), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2320), + [sym_comment] = ACTIONS(82), }, [675] = { [sym__expression] = STATE(75), @@ -29540,93 +35007,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(2322), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [676] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2322), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [677] = { [sym_type_qualifier] = STATE(677), [aux_sym_type_definition_repeat1] = STATE(677), - [anon_sym_LPAREN2] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_RBRACK] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_restrict] = ACTIONS(1021), - [anon_sym_volatile] = ACTIONS(1021), - [anon_sym__Atomic] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_BANG] = ACTIONS(1953), - [anon_sym_TILDE] = ACTIONS(1953), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1953), - [anon_sym_SQUOTE] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_identifier] = ACTIONS(1024), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_RBRACK] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1023), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1023), + [sym_false] = ACTIONS(1023), + [sym_null] = ACTIONS(1023), + [sym_identifier] = ACTIONS(1023), + [sym_comment] = ACTIONS(82), }, [678] = { [sym_type_qualifier] = STATE(677), @@ -29651,29 +35145,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(867), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(677), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_RBRACK] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2331), - [sym_false] = ACTIONS(2331), - [sym_null] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2331), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_RBRACK] = ACTIONS(2322), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2328), + [sym_comment] = ACTIONS(82), }, [679] = { [sym__expression] = STATE(868), @@ -29696,73 +35213,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(868), [sym_concatenated_string] = STATE(868), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_null] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2335), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2332), + [sym_comment] = ACTIONS(82), }, [680] = { - [anon_sym_RBRACE] = ACTIONS(2337), - [sym_comment] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(2334), + [sym_comment] = ACTIONS(82), }, [681] = { - [anon_sym_COMMA] = ACTIONS(2339), - [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(2339), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_RBRACK] = ACTIONS(2339), - [anon_sym_EQ] = ACTIONS(2341), - [anon_sym_COLON] = ACTIONS(2339), - [anon_sym_QMARK] = ACTIONS(2339), - [anon_sym_STAR_EQ] = ACTIONS(2339), - [anon_sym_SLASH_EQ] = ACTIONS(2339), - [anon_sym_PERCENT_EQ] = ACTIONS(2339), - [anon_sym_PLUS_EQ] = ACTIONS(2339), - [anon_sym_DASH_EQ] = ACTIONS(2339), - [anon_sym_LT_LT_EQ] = ACTIONS(2339), - [anon_sym_GT_GT_EQ] = ACTIONS(2339), - [anon_sym_AMP_EQ] = ACTIONS(2339), - [anon_sym_CARET_EQ] = ACTIONS(2339), - [anon_sym_PIPE_EQ] = ACTIONS(2339), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_PIPE_PIPE] = ACTIONS(2339), - [anon_sym_AMP_AMP] = ACTIONS(2339), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_CARET] = ACTIONS(2341), - [anon_sym_EQ_EQ] = ACTIONS(2339), - [anon_sym_BANG_EQ] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2341), - [anon_sym_LT_EQ] = ACTIONS(2339), - [anon_sym_GT_EQ] = ACTIONS(2339), - [anon_sym_LT_LT] = ACTIONS(2341), - [anon_sym_GT_GT] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_SLASH] = ACTIONS(2341), - [anon_sym_PERCENT] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DOT] = ACTIONS(2339), - [anon_sym_DASH_GT] = ACTIONS(2339), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2336), + [anon_sym_RPAREN] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2336), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(2336), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2336), + [anon_sym_RBRACK] = ACTIONS(2336), + [anon_sym_EQ] = ACTIONS(2338), + [anon_sym_COLON] = ACTIONS(2336), + [anon_sym_QMARK] = ACTIONS(2336), + [anon_sym_STAR_EQ] = ACTIONS(2336), + [anon_sym_SLASH_EQ] = ACTIONS(2336), + [anon_sym_PERCENT_EQ] = ACTIONS(2336), + [anon_sym_PLUS_EQ] = ACTIONS(2336), + [anon_sym_DASH_EQ] = ACTIONS(2336), + [anon_sym_LT_LT_EQ] = ACTIONS(2336), + [anon_sym_GT_GT_EQ] = ACTIONS(2336), + [anon_sym_AMP_EQ] = ACTIONS(2336), + [anon_sym_CARET_EQ] = ACTIONS(2336), + [anon_sym_PIPE_EQ] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_PIPE_PIPE] = ACTIONS(2336), + [anon_sym_AMP_AMP] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2338), + [anon_sym_EQ_EQ] = ACTIONS(2336), + [anon_sym_BANG_EQ] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2336), + [anon_sym_GT_EQ] = ACTIONS(2336), + [anon_sym_LT_LT] = ACTIONS(2338), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2338), + [anon_sym_DASH_DASH] = ACTIONS(2336), + [anon_sym_PLUS_PLUS] = ACTIONS(2336), + [anon_sym_DOT] = ACTIONS(2336), + [anon_sym_DASH_GT] = ACTIONS(2336), + [sym_comment] = ACTIONS(82), }, [682] = { [sym_type_qualifier] = STATE(73), @@ -29796,36 +35340,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [683] = { [sym__expression] = STATE(75), @@ -29848,24 +35407,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [684] = { [sym__expression] = STATE(871), @@ -29888,24 +35474,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(871), [sym_concatenated_string] = STATE(871), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2343), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2345), - [sym_false] = ACTIONS(2345), - [sym_null] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2345), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_null] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2342), + [sym_comment] = ACTIONS(82), }, [685] = { [sym__expression] = STATE(108), @@ -29928,24 +35541,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(108), [sym_concatenated_string] = STATE(108), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_identifier] = ACTIONS(209), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(210), + [sym_false] = ACTIONS(210), + [sym_null] = ACTIONS(210), + [sym_identifier] = ACTIONS(210), + [sym_comment] = ACTIONS(82), }, [686] = { [sym__expression] = STATE(109), @@ -29968,24 +35608,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(109), [sym_concatenated_string] = STATE(109), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(212), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_null] = ACTIONS(214), + [sym_identifier] = ACTIONS(214), + [sym_comment] = ACTIONS(82), }, [687] = { [sym__expression] = STATE(110), @@ -30008,24 +35675,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(110), [sym_concatenated_string] = STATE(110), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(216), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_null] = ACTIONS(218), + [sym_identifier] = ACTIONS(218), + [sym_comment] = ACTIONS(82), }, [688] = { [sym__expression] = STATE(873), @@ -30048,237 +35742,318 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(873), [sym_concatenated_string] = STATE(873), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2351), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2348), + [sym_comment] = ACTIONS(82), }, [689] = { - [sym_identifier] = ACTIONS(2353), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(2350), + [sym_comment] = ACTIONS(82), }, [690] = { [sym_argument_list] = STATE(142), [aux_sym_initializer_list_repeat1] = STATE(888), - [anon_sym_COMMA] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2361), - [anon_sym_STAR_EQ] = ACTIONS(2363), - [anon_sym_SLASH_EQ] = ACTIONS(2363), - [anon_sym_PERCENT_EQ] = ACTIONS(2363), - [anon_sym_PLUS_EQ] = ACTIONS(2363), - [anon_sym_DASH_EQ] = ACTIONS(2363), - [anon_sym_LT_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_GT_EQ] = ACTIONS(2363), - [anon_sym_AMP_EQ] = ACTIONS(2363), - [anon_sym_CARET_EQ] = ACTIONS(2363), - [anon_sym_PIPE_EQ] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(2356), + [anon_sym_QMARK] = ACTIONS(2358), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [691] = { [aux_sym_initializer_list_repeat1] = STATE(888), - [anon_sym_COMMA] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2337), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2334), + [sym_comment] = ACTIONS(82), }, [692] = { [sym_string_literal] = STATE(889), [aux_sym_concatenated_string_repeat1] = STATE(889), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_RBRACE] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [693] = { [sym_subscript_designator] = STATE(891), [sym_field_designator] = STATE(891), [aux_sym_initializer_pair_repeat1] = STATE(891), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_EQ] = ACTIONS(2385), - [anon_sym_DOT] = ACTIONS(1786), - [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_EQ] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(1785), + [sym_comment] = ACTIONS(82), }, [694] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2361), - [anon_sym_STAR_EQ] = ACTIONS(2363), - [anon_sym_SLASH_EQ] = ACTIONS(2363), - [anon_sym_PERCENT_EQ] = ACTIONS(2363), - [anon_sym_PLUS_EQ] = ACTIONS(2363), - [anon_sym_DASH_EQ] = ACTIONS(2363), - [anon_sym_LT_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_GT_EQ] = ACTIONS(2363), - [anon_sym_AMP_EQ] = ACTIONS(2363), - [anon_sym_CARET_EQ] = ACTIONS(2363), - [anon_sym_PIPE_EQ] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(2356), + [anon_sym_QMARK] = ACTIONS(2358), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [695] = { - [anon_sym_COMMA] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(2389), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2391), - [anon_sym_auto] = ACTIONS(2391), - [anon_sym_register] = ACTIONS(2391), - [anon_sym_inline] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [anon_sym_restrict] = ACTIONS(2391), - [anon_sym_volatile] = ACTIONS(2391), - [anon_sym__Atomic] = ACTIONS(2391), - [anon_sym_COLON] = ACTIONS(2389), - [sym_identifier] = ACTIONS(2391), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_auto] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_inline] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_restrict] = ACTIONS(2388), + [anon_sym_volatile] = ACTIONS(2388), + [anon_sym__Atomic] = ACTIONS(2388), + [anon_sym_COLON] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [sym_comment] = ACTIONS(82), }, [696] = { - [anon_sym_COMMA] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [sym_comment] = ACTIONS(82), }, [697] = { [sym_enumerator] = STATE(696), - [anon_sym_RBRACE] = ACTIONS(2395), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(484), + [sym_comment] = ACTIONS(82), }, [698] = { [aux_sym_enumerator_list_repeat1] = STATE(698), - [anon_sym_COMMA] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2393), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2390), + [sym_comment] = ACTIONS(82), }, [699] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2400), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2402), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_auto] = ACTIONS(2400), - [anon_sym_register] = ACTIONS(2400), - [anon_sym_inline] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_restrict] = ACTIONS(2400), - [anon_sym_volatile] = ACTIONS(2400), - [anon_sym__Atomic] = ACTIONS(2400), - [anon_sym_signed] = ACTIONS(2400), - [anon_sym_unsigned] = ACTIONS(2400), - [anon_sym_long] = ACTIONS(2400), - [anon_sym_short] = ACTIONS(2400), - [sym_primitive_type] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_union] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2400), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_auto] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_restrict] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym__Atomic] = ACTIONS(2397), + [anon_sym_signed] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [sym_primitive_type] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2397), + [sym_comment] = ACTIONS(82), }, [700] = { [sym_preproc_if_in_field_declaration_list] = STATE(894), @@ -30297,37 +36072,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2404), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [701] = { - [sym_preproc_arg] = ACTIONS(2406), - [sym_comment] = ACTIONS(91), + [sym_preproc_arg] = ACTIONS(2403), + [sym_comment] = ACTIONS(92), }, [702] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2405), + [sym_comment] = ACTIONS(82), }, [703] = { [sym_preproc_if_in_field_declaration_list] = STATE(898), @@ -30348,63 +36133,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1816), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1815), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1817), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [704] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2410), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2412), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2412), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2412), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2412), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_auto] = ACTIONS(2410), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_inline] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_restrict] = ACTIONS(2410), - [anon_sym_volatile] = ACTIONS(2410), - [anon_sym__Atomic] = ACTIONS(2410), - [anon_sym_signed] = ACTIONS(2410), - [anon_sym_unsigned] = ACTIONS(2410), - [anon_sym_long] = ACTIONS(2410), - [anon_sym_short] = ACTIONS(2410), - [sym_primitive_type] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2410), - [anon_sym_union] = ACTIONS(2410), - [sym_identifier] = ACTIONS(2410), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2409), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2409), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2409), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2409), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_auto] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_inline] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_restrict] = ACTIONS(2407), + [anon_sym_volatile] = ACTIONS(2407), + [anon_sym__Atomic] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2407), + [anon_sym_long] = ACTIONS(2407), + [anon_sym_short] = ACTIONS(2407), + [sym_primitive_type] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2407), + [sym_comment] = ACTIONS(82), }, [705] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2414), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2411), + [sym_comment] = ACTIONS(82), }, [706] = { [sym_preproc_if_in_field_declaration_list] = STATE(898), @@ -30425,31 +36220,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1816), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2411), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1815), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1817), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [707] = { [sym__field_declarator] = STATE(709), @@ -30458,31 +36263,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(709), [sym_type_qualifier] = STATE(901), [aux_sym_type_definition_repeat1] = STATE(901), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1828), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1191), + [sym_comment] = ACTIONS(82), }, [708] = { [sym_parameter_list] = STATE(716), - [anon_sym_RPAREN] = ACTIONS(2416), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1840), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1837), + [sym_comment] = ACTIONS(82), }, [709] = { [sym_parameter_list] = STATE(716), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_COLON] = ACTIONS(2418), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(2415), + [sym_comment] = ACTIONS(82), }, [710] = { [sym__field_declarator] = STATE(903), @@ -30491,93 +36319,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(903), [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1828), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1191), + [sym_comment] = ACTIONS(82), }, [711] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [712] = { [sym__field_declarator] = STATE(904), [sym_pointer_field_declarator] = STATE(904), [sym_function_field_declarator] = STATE(904), [sym_array_field_declarator] = STATE(904), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1192), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1191), + [sym_comment] = ACTIONS(82), }, [713] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_auto] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_inline] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_restrict] = ACTIONS(2422), - [anon_sym_volatile] = ACTIONS(2422), - [anon_sym__Atomic] = ACTIONS(2422), - [anon_sym_signed] = ACTIONS(2422), - [anon_sym_unsigned] = ACTIONS(2422), - [anon_sym_long] = ACTIONS(2422), - [anon_sym_short] = ACTIONS(2422), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2422), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_auto] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_restrict] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym__Atomic] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [sym_primitive_type] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2419), + [sym_comment] = ACTIONS(82), }, [714] = { [sym_type_qualifier] = STATE(908), @@ -30602,147 +36480,170 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(907), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(908), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_RBRACK] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2430), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2432), - [sym_false] = ACTIONS(2432), - [sym_null] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2432), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_RBRACK] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_null] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2429), + [sym_comment] = ACTIONS(82), }, [715] = { - [anon_sym_SEMI] = ACTIONS(2434), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2431), + [sym_comment] = ACTIONS(82), }, [716] = { - [anon_sym_COMMA] = ACTIONS(2436), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_LPAREN2] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2436), - [anon_sym_COLON] = ACTIONS(2436), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2433), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2433), + [anon_sym_LPAREN2] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_COLON] = ACTIONS(2433), + [sym_comment] = ACTIONS(82), }, [717] = { [sym_bitfield_clause] = STATE(910), [aux_sym_field_declaration_repeat1] = STATE(911), - [anon_sym_COMMA] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_COLON] = ACTIONS(1190), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(1189), + [sym_comment] = ACTIONS(82), }, [718] = { [sym_storage_class_specifier] = STATE(718), [sym_type_qualifier] = STATE(718), [aux_sym__declaration_specifiers_repeat1] = STATE(718), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(866), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_const] = ACTIONS(869), - [anon_sym_restrict] = ACTIONS(869), - [anon_sym_volatile] = ACTIONS(869), - [anon_sym__Atomic] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(1377), - [sym_identifier] = ACTIONS(872), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(867), + [anon_sym_auto] = ACTIONS(867), + [anon_sym_register] = ACTIONS(867), + [anon_sym_inline] = ACTIONS(867), + [anon_sym_const] = ACTIONS(870), + [anon_sym_restrict] = ACTIONS(870), + [anon_sym_volatile] = ACTIONS(870), + [anon_sym__Atomic] = ACTIONS(870), + [anon_sym_COLON] = ACTIONS(1376), + [sym_identifier] = ACTIONS(873), + [sym_comment] = ACTIONS(82), }, [719] = { [sym_storage_class_specifier] = STATE(718), [sym_type_qualifier] = STATE(718), [aux_sym__declaration_specifiers_repeat1] = STATE(718), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_COLON] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [sym_comment] = ACTIONS(82), }, [720] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(1213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(2435), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [721] = { [sym__expression] = STATE(914), @@ -30765,126 +36666,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(914), [sym_concatenated_string] = STATE(914), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2444), - [sym_false] = ACTIONS(2444), - [sym_null] = ACTIONS(2444), - [sym_identifier] = ACTIONS(2444), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2437), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_null] = ACTIONS(2441), + [sym_identifier] = ACTIONS(2441), + [sym_comment] = ACTIONS(82), }, [722] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2446), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [723] = { - [ts_builtin_sym_end] = ACTIONS(2448), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2450), - [sym_preproc_directive] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_typedef] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_LPAREN2] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_auto] = ACTIONS(2450), - [anon_sym_register] = ACTIONS(2450), - [anon_sym_inline] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_restrict] = ACTIONS(2450), - [anon_sym_volatile] = ACTIONS(2450), - [anon_sym__Atomic] = ACTIONS(2450), - [anon_sym_signed] = ACTIONS(2450), - [anon_sym_unsigned] = ACTIONS(2450), - [anon_sym_long] = ACTIONS(2450), - [anon_sym_short] = ACTIONS(2450), - [sym_primitive_type] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_case] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_do] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_goto] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_TILDE] = ACTIONS(2448), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2448), - [anon_sym_PLUS_PLUS] = ACTIONS(2448), - [anon_sym_sizeof] = ACTIONS(2450), - [sym_number_literal] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(2448), - [sym_true] = ACTIONS(2450), - [sym_false] = ACTIONS(2450), - [sym_null] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2450), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2445), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2447), + [sym_preproc_directive] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_typedef] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2447), + [anon_sym_auto] = ACTIONS(2447), + [anon_sym_register] = ACTIONS(2447), + [anon_sym_inline] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [anon_sym_restrict] = ACTIONS(2447), + [anon_sym_volatile] = ACTIONS(2447), + [anon_sym__Atomic] = ACTIONS(2447), + [anon_sym_signed] = ACTIONS(2447), + [anon_sym_unsigned] = ACTIONS(2447), + [anon_sym_long] = ACTIONS(2447), + [anon_sym_short] = ACTIONS(2447), + [sym_primitive_type] = ACTIONS(2447), + [anon_sym_enum] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2447), + [anon_sym_union] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_switch] = ACTIONS(2447), + [anon_sym_case] = ACTIONS(2447), + [anon_sym_default] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_do] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_goto] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), + [sym_number_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym_true] = ACTIONS(2447), + [sym_false] = ACTIONS(2447), + [sym_null] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2447), + [sym_comment] = ACTIONS(82), }, [724] = { [sym_compound_statement] = STATE(920), @@ -30920,76 +36848,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [725] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(2460), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [726] = { [sym_declaration] = STATE(926), @@ -31039,56 +36986,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), [aux_sym_case_statement_repeat1] = STATE(926), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2472), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2469), + [sym_comment] = ACTIONS(82), }, [727] = { [sym_compound_statement] = STATE(257), @@ -31124,35 +37071,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [728] = { [sym_declaration] = STATE(927), @@ -31187,42 +37153,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2476), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [729] = { [sym_compound_statement] = STATE(291), @@ -31258,95 +37234,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [730] = { - [ts_builtin_sym_end] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2482), - [sym_preproc_directive] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_auto] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_switch] = ACTIONS(2482), - [anon_sym_case] = ACTIONS(2482), - [anon_sym_default] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2482), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2482), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_auto] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2479), + [sym_comment] = ACTIONS(82), }, [731] = { [sym_compound_statement] = STATE(731), @@ -31384,38 +37379,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), [aux_sym_switch_body_repeat1] = STATE(731), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_LPAREN2] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_case] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_sizeof] = ACTIONS(2543), - [sym_number_literal] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2552), - [sym_true] = ACTIONS(2555), - [sym_false] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2558), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2540), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [sym_null] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2555), + [sym_comment] = ACTIONS(82), }, [732] = { [sym_compound_statement] = STATE(929), @@ -31451,35 +37464,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [733] = { [sym_compound_statement] = STATE(257), @@ -31515,35 +37547,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [734] = { [sym_declaration] = STATE(930), @@ -31578,42 +37629,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2563), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2565), - [sym_false] = ACTIONS(2565), - [sym_null] = ACTIONS(2565), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2562), + [sym_false] = ACTIONS(2562), + [sym_null] = ACTIONS(2562), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [735] = { [sym_compound_statement] = STATE(291), @@ -31649,35 +37710,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [736] = { [sym_compound_statement] = STATE(723), @@ -31713,35 +37793,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [737] = { [sym__expression] = STATE(933), @@ -31764,66 +37863,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(933), [sym_concatenated_string] = STATE(933), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_identifier] = ACTIONS(2571), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_identifier] = ACTIONS(2568), + [sym_comment] = ACTIONS(82), }, [738] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [739] = { [sym__expression] = STATE(935), @@ -31846,25 +37972,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(935), [sym_concatenated_string] = STATE(935), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2577), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2574), + [sym_false] = ACTIONS(2574), + [sym_null] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2574), + [sym_comment] = ACTIONS(82), }, [740] = { [sym_compound_statement] = STATE(936), @@ -31900,78 +38053,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [741] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(938), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [742] = { [sym__expression] = STATE(939), @@ -31994,25 +38166,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(939), [sym_concatenated_string] = STATE(939), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2583), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2580), + [sym_false] = ACTIONS(2580), + [sym_null] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2580), + [sym_comment] = ACTIONS(82), }, [743] = { [sym__declarator] = STATE(520), @@ -32021,55 +38220,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(520), [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1349), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(82), }, [744] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [745] = { [sym__expression] = STATE(452), @@ -32093,55 +38315,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_PERCENT_EQ] = ACTIONS(1937), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_CARET_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_PIPE_PIPE] = ACTIONS(1937), - [anon_sym_AMP_AMP] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_DASH_GT] = ACTIONS(1937), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1934), + [anon_sym_STAR_EQ] = ACTIONS(1934), + [anon_sym_SLASH_EQ] = ACTIONS(1934), + [anon_sym_PERCENT_EQ] = ACTIONS(1934), + [anon_sym_PLUS_EQ] = ACTIONS(1934), + [anon_sym_DASH_EQ] = ACTIONS(1934), + [anon_sym_LT_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_GT_EQ] = ACTIONS(1934), + [anon_sym_AMP_EQ] = ACTIONS(1934), + [anon_sym_CARET_EQ] = ACTIONS(1934), + [anon_sym_PIPE_EQ] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [anon_sym_DOT] = ACTIONS(1934), + [anon_sym_DASH_GT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [746] = { [sym__expression] = STATE(941), @@ -32164,34 +38413,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(941), [sym_concatenated_string] = STATE(941), [sym_string_literal] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2591), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2593), - [sym_false] = ACTIONS(2593), - [sym_null] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2593), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [sym_null] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2590), + [sym_comment] = ACTIONS(82), }, [747] = { - [anon_sym_COMMA] = ACTIONS(2595), - [anon_sym_RPAREN] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_EQ] = ACTIONS(2595), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(2592), + [sym_comment] = ACTIONS(82), }, [748] = { [sym__expression] = STATE(75), @@ -32214,159 +38490,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [749] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [750] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [751] = { - [anon_sym_COMMA] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_RBRACK] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_STAR_EQ] = ACTIONS(2601), - [anon_sym_SLASH_EQ] = ACTIONS(2601), - [anon_sym_PERCENT_EQ] = ACTIONS(2601), - [anon_sym_PLUS_EQ] = ACTIONS(2601), - [anon_sym_DASH_EQ] = ACTIONS(2601), - [anon_sym_LT_LT_EQ] = ACTIONS(2601), - [anon_sym_GT_GT_EQ] = ACTIONS(2601), - [anon_sym_AMP_EQ] = ACTIONS(2601), - [anon_sym_CARET_EQ] = ACTIONS(2601), - [anon_sym_PIPE_EQ] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_CARET] = ACTIONS(2603), - [anon_sym_EQ_EQ] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_GT] = ACTIONS(2603), - [anon_sym_LT_EQ] = ACTIONS(2601), - [anon_sym_GT_EQ] = ACTIONS(2601), - [anon_sym_LT_LT] = ACTIONS(2603), - [anon_sym_GT_GT] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_SLASH] = ACTIONS(2603), - [anon_sym_PERCENT] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2601), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2598), + [anon_sym_RPAREN] = ACTIONS(2598), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_RBRACK] = ACTIONS(2598), + [anon_sym_EQ] = ACTIONS(2600), + [anon_sym_COLON] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2598), + [anon_sym_STAR_EQ] = ACTIONS(2598), + [anon_sym_SLASH_EQ] = ACTIONS(2598), + [anon_sym_PERCENT_EQ] = ACTIONS(2598), + [anon_sym_PLUS_EQ] = ACTIONS(2598), + [anon_sym_DASH_EQ] = ACTIONS(2598), + [anon_sym_LT_LT_EQ] = ACTIONS(2598), + [anon_sym_GT_GT_EQ] = ACTIONS(2598), + [anon_sym_AMP_EQ] = ACTIONS(2598), + [anon_sym_CARET_EQ] = ACTIONS(2598), + [anon_sym_PIPE_EQ] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_PIPE_PIPE] = ACTIONS(2598), + [anon_sym_AMP_AMP] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_EQ_EQ] = ACTIONS(2598), + [anon_sym_BANG_EQ] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2600), + [anon_sym_GT] = ACTIONS(2600), + [anon_sym_LT_EQ] = ACTIONS(2598), + [anon_sym_GT_EQ] = ACTIONS(2598), + [anon_sym_LT_LT] = ACTIONS(2600), + [anon_sym_GT_GT] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_PERCENT] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(2598), + [anon_sym_PLUS_PLUS] = ACTIONS(2598), + [anon_sym_DOT] = ACTIONS(2598), + [anon_sym_DASH_GT] = ACTIONS(2598), + [sym_comment] = ACTIONS(82), }, [752] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2599), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2602), + [anon_sym_RPAREN] = ACTIONS(2596), + [sym_comment] = ACTIONS(82), }, [753] = { [sym__expression] = STATE(452), @@ -32390,523 +38693,550 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(317), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [754] = { - [anon_sym_RPAREN] = ACTIONS(2608), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2605), + [sym_comment] = ACTIONS(82), }, [755] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [756] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(2610), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(2607), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [757] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [758] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [759] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [760] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [761] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [762] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [763] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [764] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [765] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [766] = { [sym_string_literal] = STATE(766), [aux_sym_concatenated_string_repeat1] = STATE(766), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_RBRACK] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DASH_GT] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(82), }, [767] = { [sym__expression] = STATE(452), @@ -32930,1071 +39260,1098 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(326), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [768] = { - [anon_sym_RPAREN] = ACTIONS(2612), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2609), + [sym_comment] = ACTIONS(82), }, [769] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(1429), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [770] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(279), - [anon_sym_SLASH_EQ] = ACTIONS(279), - [anon_sym_PERCENT_EQ] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(279), - [anon_sym_DASH_EQ] = ACTIONS(279), - [anon_sym_LT_LT_EQ] = ACTIONS(279), - [anon_sym_GT_GT_EQ] = ACTIONS(279), - [anon_sym_AMP_EQ] = ACTIONS(279), - [anon_sym_CARET_EQ] = ACTIONS(279), - [anon_sym_PIPE_EQ] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(278), + [anon_sym_STAR_EQ] = ACTIONS(280), + [anon_sym_SLASH_EQ] = ACTIONS(280), + [anon_sym_PERCENT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_LT_LT_EQ] = ACTIONS(280), + [anon_sym_GT_GT_EQ] = ACTIONS(280), + [anon_sym_AMP_EQ] = ACTIONS(280), + [anon_sym_CARET_EQ] = ACTIONS(280), + [anon_sym_PIPE_EQ] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [771] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(2613), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [772] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_COLON] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [773] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_COLON] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_COLON] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [774] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_COLON] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_COLON] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [775] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_COLON] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [776] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_COLON] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [777] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_COLON] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_COLON] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [778] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_COLON] = ACTIONS(1478), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [779] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_COLON] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_COLON] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [780] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_COLON] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [781] = { [sym_string_literal] = STATE(781), [aux_sym_concatenated_string_repeat1] = STATE(781), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_COLON] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DASH_GT] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(82), }, [782] = { - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_RPAREN] = ACTIONS(2618), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2615), + [anon_sym_RPAREN] = ACTIONS(2615), + [sym_comment] = ACTIONS(82), }, [783] = { - [anon_sym_LF] = ACTIONS(2620), - [sym_preproc_arg] = ACTIONS(2620), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2617), + [sym_preproc_arg] = ACTIONS(2617), + [sym_comment] = ACTIONS(92), }, [784] = { [aux_sym_preproc_params_repeat1] = STATE(784), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_RPAREN] = ACTIONS(2618), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2615), + [sym_comment] = ACTIONS(82), }, [785] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_null] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_null] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1331), + [sym_comment] = ACTIONS(82), }, [786] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_null] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1510), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1509), + [sym_preproc_directive] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_goto] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_sizeof] = ACTIONS(1509), + [sym_number_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1509), + [sym_comment] = ACTIONS(82), }, [787] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_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(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1514), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1513), + [sym_preproc_directive] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_typedef] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_LPAREN2] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_goto] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_sizeof] = ACTIONS(1513), + [sym_number_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [sym_null] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1513), + [sym_comment] = ACTIONS(82), }, [788] = { - [anon_sym_LF] = ACTIONS(2625), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2622), + [sym_comment] = ACTIONS(92), }, [789] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1608), - [sym_preproc_directive] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_typedef] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_auto] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_inline] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_restrict] = ACTIONS(1608), - [anon_sym_volatile] = ACTIONS(1608), - [anon_sym__Atomic] = ACTIONS(1608), - [anon_sym_signed] = ACTIONS(1608), - [anon_sym_unsigned] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [sym_primitive_type] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_goto] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_sizeof] = ACTIONS(1608), - [sym_number_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [sym_true] = ACTIONS(1608), - [sym_false] = ACTIONS(1608), - [sym_null] = ACTIONS(1608), - [sym_identifier] = ACTIONS(1608), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1607), + [sym_preproc_directive] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym_true] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), + [sym_comment] = ACTIONS(82), }, [790] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2627), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2624), + [sym_comment] = ACTIONS(82), }, [791] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1681), - [sym_preproc_directive] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_auto] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym__Atomic] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1681), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_null] = ACTIONS(1681), - [sym_identifier] = ACTIONS(1681), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1680), + [sym_preproc_directive] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_auto] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1680), + [anon_sym_inline] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1680), + [anon_sym_unsigned] = ACTIONS(1680), + [anon_sym_long] = ACTIONS(1680), + [anon_sym_short] = ACTIONS(1680), + [sym_primitive_type] = 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_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(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1680), + [sym_false] = ACTIONS(1680), + [sym_null] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1680), + [sym_comment] = ACTIONS(82), }, [792] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2629), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2626), + [sym_comment] = ACTIONS(82), }, [793] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(619), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(619), - [sym_preproc_directive] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_typedef] = ACTIONS(619), - [anon_sym_extern] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_LPAREN2] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_static] = ACTIONS(619), - [anon_sym_auto] = ACTIONS(619), - [anon_sym_register] = ACTIONS(619), - [anon_sym_inline] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_restrict] = ACTIONS(619), - [anon_sym_volatile] = ACTIONS(619), - [anon_sym__Atomic] = ACTIONS(619), - [anon_sym_signed] = ACTIONS(619), - [anon_sym_unsigned] = ACTIONS(619), - [anon_sym_long] = ACTIONS(619), - [anon_sym_short] = ACTIONS(619), - [sym_primitive_type] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(619), - [anon_sym_union] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_switch] = ACTIONS(619), - [anon_sym_while] = ACTIONS(619), - [anon_sym_do] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_sizeof] = ACTIONS(619), - [sym_number_literal] = ACTIONS(617), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_null] = ACTIONS(619), - [sym_identifier] = ACTIONS(619), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(620), + [sym_preproc_directive] = ACTIONS(620), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_typedef] = ACTIONS(620), + [anon_sym_extern] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_LPAREN2] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_static] = ACTIONS(620), + [anon_sym_auto] = ACTIONS(620), + [anon_sym_register] = ACTIONS(620), + [anon_sym_inline] = ACTIONS(620), + [anon_sym_const] = ACTIONS(620), + [anon_sym_restrict] = ACTIONS(620), + [anon_sym_volatile] = ACTIONS(620), + [anon_sym__Atomic] = ACTIONS(620), + [anon_sym_signed] = ACTIONS(620), + [anon_sym_unsigned] = ACTIONS(620), + [anon_sym_long] = ACTIONS(620), + [anon_sym_short] = ACTIONS(620), + [sym_primitive_type] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(620), + [anon_sym_struct] = ACTIONS(620), + [anon_sym_union] = ACTIONS(620), + [anon_sym_if] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(620), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(620), + [anon_sym_for] = ACTIONS(620), + [anon_sym_return] = ACTIONS(620), + [anon_sym_break] = ACTIONS(620), + [anon_sym_continue] = ACTIONS(620), + [anon_sym_goto] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_sizeof] = ACTIONS(620), + [sym_number_literal] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [sym_true] = ACTIONS(620), + [sym_false] = ACTIONS(620), + [sym_null] = ACTIONS(620), + [sym_identifier] = ACTIONS(620), + [sym_comment] = ACTIONS(82), }, [794] = { [aux_sym_string_literal_repeat1] = STATE(289), - [anon_sym_DQUOTE] = ACTIONS(2631), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(623), - [sym_escape_sequence] = ACTIONS(623), - [sym_comment] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(2628), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_PLUS_SLASH] = ACTIONS(624), + [sym_escape_sequence] = ACTIONS(624), + [sym_comment] = ACTIONS(92), }, [795] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(893), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(893), - [sym_preproc_directive] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_typedef] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_LPAREN2] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_static] = ACTIONS(893), - [anon_sym_auto] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_inline] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [anon_sym_restrict] = ACTIONS(893), - [anon_sym_volatile] = ACTIONS(893), - [anon_sym__Atomic] = ACTIONS(893), - [anon_sym_signed] = ACTIONS(893), - [anon_sym_unsigned] = ACTIONS(893), - [anon_sym_long] = ACTIONS(893), - [anon_sym_short] = ACTIONS(893), - [sym_primitive_type] = ACTIONS(893), - [anon_sym_enum] = ACTIONS(893), - [anon_sym_struct] = ACTIONS(893), - [anon_sym_union] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_switch] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_goto] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_sizeof] = ACTIONS(893), - [sym_number_literal] = ACTIONS(891), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_true] = ACTIONS(893), - [sym_false] = ACTIONS(893), - [sym_null] = ACTIONS(893), - [sym_identifier] = ACTIONS(893), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(894), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), + [sym_identifier] = ACTIONS(894), + [sym_comment] = ACTIONS(82), }, [796] = { - [anon_sym_LF] = ACTIONS(2633), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2630), + [sym_comment] = ACTIONS(92), }, [797] = { - [anon_sym_LF] = ACTIONS(2635), - [sym_preproc_arg] = ACTIONS(2637), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2632), + [sym_preproc_arg] = ACTIONS(2634), + [sym_comment] = ACTIONS(92), }, [798] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(915), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(915), - [sym_preproc_directive] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_typedef] = ACTIONS(915), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_static] = ACTIONS(915), - [anon_sym_auto] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_inline] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_restrict] = ACTIONS(915), - [anon_sym_volatile] = ACTIONS(915), - [anon_sym__Atomic] = ACTIONS(915), - [anon_sym_signed] = ACTIONS(915), - [anon_sym_unsigned] = ACTIONS(915), - [anon_sym_long] = ACTIONS(915), - [anon_sym_short] = ACTIONS(915), - [sym_primitive_type] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_goto] = ACTIONS(915), - [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(913), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(913), - [sym_true] = ACTIONS(915), - [sym_false] = ACTIONS(915), - [sym_null] = ACTIONS(915), - [sym_identifier] = ACTIONS(915), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_static] = ACTIONS(916), + [anon_sym_auto] = ACTIONS(916), + [anon_sym_register] = ACTIONS(916), + [anon_sym_inline] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_unsigned] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [sym_primitive_type] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_sizeof] = ACTIONS(916), + [sym_number_literal] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), + [sym_identifier] = ACTIONS(916), + [sym_comment] = ACTIONS(82), }, [799] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2639), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2636), + [sym_comment] = ACTIONS(82), }, [800] = { [sym_preproc_include] = STATE(398), @@ -34055,122 +40412,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2641), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2638), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [801] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1001), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1001), - [sym_preproc_directive] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_typedef] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_LPAREN2] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_auto] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_inline] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_restrict] = ACTIONS(1001), - [anon_sym_volatile] = ACTIONS(1001), - [anon_sym__Atomic] = ACTIONS(1001), - [anon_sym_signed] = ACTIONS(1001), - [anon_sym_unsigned] = ACTIONS(1001), - [anon_sym_long] = ACTIONS(1001), - [anon_sym_short] = ACTIONS(1001), - [sym_primitive_type] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_goto] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_sizeof] = ACTIONS(1001), - [sym_number_literal] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_identifier] = ACTIONS(1001), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1002), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1002), + [sym_preproc_directive] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_typedef] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1002), + [anon_sym_auto] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_inline] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_restrict] = ACTIONS(1002), + [anon_sym_volatile] = ACTIONS(1002), + [anon_sym__Atomic] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(1002), + [anon_sym_unsigned] = ACTIONS(1002), + [anon_sym_long] = ACTIONS(1002), + [anon_sym_short] = ACTIONS(1002), + [sym_primitive_type] = ACTIONS(1002), + [anon_sym_enum] = ACTIONS(1002), + [anon_sym_struct] = ACTIONS(1002), + [anon_sym_union] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_switch] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_sizeof] = ACTIONS(1002), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1002), + [sym_false] = ACTIONS(1002), + [sym_null] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1002), + [sym_comment] = ACTIONS(82), }, [802] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2643), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2640), + [sym_comment] = ACTIONS(82), }, [803] = { [sym_preproc_include] = STATE(398), @@ -34231,135 +40589,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(398), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(342), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(346), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_typedef] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2642), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(343), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(347), + [sym_preproc_directive] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(353), + [anon_sym_extern] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(381), + [sym_comment] = ACTIONS(82), }, [804] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1009), - [sym_preproc_directive] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_auto] = ACTIONS(1009), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_inline] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_restrict] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1009), - [anon_sym_signed] = ACTIONS(1009), - [anon_sym_unsigned] = ACTIONS(1009), - [anon_sym_long] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [sym_primitive_type] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_goto] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1009), - [sym_number_literal] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym_true] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [sym_null] = ACTIONS(1009), - [sym_identifier] = ACTIONS(1009), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1010), + [sym_preproc_directive] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_typedef] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_auto] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_inline] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_restrict] = ACTIONS(1010), + [anon_sym_volatile] = ACTIONS(1010), + [anon_sym__Atomic] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(1010), + [anon_sym_unsigned] = ACTIONS(1010), + [anon_sym_long] = ACTIONS(1010), + [anon_sym_short] = ACTIONS(1010), + [sym_primitive_type] = ACTIONS(1010), + [anon_sym_enum] = ACTIONS(1010), + [anon_sym_struct] = ACTIONS(1010), + [anon_sym_union] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_goto] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_sizeof] = ACTIONS(1010), + [sym_number_literal] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym_true] = ACTIONS(1010), + [sym_false] = ACTIONS(1010), + [sym_null] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1010), + [sym_comment] = ACTIONS(82), }, [805] = { [sym_parameter_list] = STATE(407), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [806] = { [sym__type_declarator] = STATE(959), [sym_pointer_type_declarator] = STATE(959), [sym_function_type_declarator] = STATE(959), [sym_array_type_declarator] = STATE(959), - [anon_sym_LPAREN2] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(82), }, [807] = { [sym_preproc_include] = STATE(961), @@ -34418,116 +40804,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(961), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [808] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1033), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1033), - [sym_preproc_directive] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_typedef] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_LPAREN2] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_auto] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_inline] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_restrict] = ACTIONS(1033), - [anon_sym_volatile] = ACTIONS(1033), - [anon_sym__Atomic] = ACTIONS(1033), - [anon_sym_signed] = ACTIONS(1033), - [anon_sym_unsigned] = ACTIONS(1033), - [anon_sym_long] = ACTIONS(1033), - [anon_sym_short] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_switch] = 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(1031), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [sym_null] = ACTIONS(1033), - [sym_identifier] = ACTIONS(1033), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [sym_identifier] = ACTIONS(1032), + [sym_comment] = ACTIONS(82), }, [809] = { [sym__declarator] = STATE(608), @@ -34535,180 +40922,207 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(608), [sym_array_declarator] = STATE(608), [sym_init_declarator] = STATE(609), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [sym_identifier] = ACTIONS(1566), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(256), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1565), + [sym_comment] = ACTIONS(82), }, [810] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1057), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1057), - [sym_preproc_directive] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_typedef] = ACTIONS(1057), - [anon_sym_extern] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_auto] = ACTIONS(1057), - [anon_sym_register] = ACTIONS(1057), - [anon_sym_inline] = ACTIONS(1057), - [anon_sym_const] = ACTIONS(1057), - [anon_sym_restrict] = ACTIONS(1057), - [anon_sym_volatile] = ACTIONS(1057), - [anon_sym__Atomic] = ACTIONS(1057), - [anon_sym_signed] = ACTIONS(1057), - [anon_sym_unsigned] = ACTIONS(1057), - [anon_sym_long] = ACTIONS(1057), - [anon_sym_short] = ACTIONS(1057), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [anon_sym_struct] = ACTIONS(1057), - [anon_sym_union] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_goto] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_sizeof] = ACTIONS(1057), - [sym_number_literal] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [sym_identifier] = ACTIONS(1057), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1056), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [sym_comment] = ACTIONS(82), }, [811] = { [sym_parenthesized_expression] = STATE(962), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [812] = { [sym_parenthesized_expression] = STATE(963), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [813] = { - [anon_sym_LPAREN2] = ACTIONS(2651), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(2648), + [sym_comment] = ACTIONS(82), }, [814] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(2650), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [815] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [816] = { [sym_compound_statement] = STATE(968), @@ -34746,199 +41160,217 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), [aux_sym_switch_body_repeat1] = STATE(968), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [817] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1236), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [sym_null] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1236), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1235), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [sym_null] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1235), + [sym_comment] = ACTIONS(82), }, [818] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [819] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1240), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [sym_null] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1239), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [sym_null] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1239), + [sym_comment] = ACTIONS(82), }, [820] = { [sym_parenthesized_expression] = STATE(970), - [anon_sym_LPAREN2] = ACTIONS(2659), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(2656), + [sym_comment] = ACTIONS(82), }, [821] = { [sym__expression] = STATE(972), @@ -34961,482 +41393,509 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(972), [sym_concatenated_string] = STATE(972), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2665), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2662), + [sym_false] = ACTIONS(2662), + [sym_null] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2662), + [sym_comment] = ACTIONS(82), }, [822] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [823] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1274), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1273), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym__Atomic] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_sizeof] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [sym_comment] = ACTIONS(82), }, [824] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1322), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [sym_null] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1322), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1321), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [sym_primitive_type] = 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_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(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1321), + [sym_comment] = ACTIONS(82), }, [825] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1343), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_null] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1342), + [sym_comment] = ACTIONS(82), }, [826] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [sym_primitive_type] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_do] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [sym_null] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1355), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [sym_null] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(82), }, [827] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1371), - [sym_preproc_directive] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_typedef] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_auto] = ACTIONS(1371), - [anon_sym_register] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_restrict] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym__Atomic] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [sym_primitive_type] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_goto] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_sizeof] = ACTIONS(1371), - [sym_number_literal] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), - [sym_null] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1371), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1370), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(82), }, [828] = { [aux_sym_declaration_repeat1] = STATE(531), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(2669), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(2666), + [sym_comment] = ACTIONS(82), }, [829] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2668), + [sym_comment] = ACTIONS(82), }, [830] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1691), - [sym_preproc_directive] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_auto] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_identifier] = ACTIONS(1691), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1690), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_typedef] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_auto] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_inline] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_restrict] = ACTIONS(1690), + [anon_sym_volatile] = ACTIONS(1690), + [anon_sym__Atomic] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(1690), + [anon_sym_unsigned] = ACTIONS(1690), + [anon_sym_long] = ACTIONS(1690), + [anon_sym_short] = ACTIONS(1690), + [sym_primitive_type] = 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_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(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym_true] = ACTIONS(1690), + [sym_false] = ACTIONS(1690), + [sym_null] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(82), }, [831] = { [sym_parameter_list] = STATE(407), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [832] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1707), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1706), + [sym_preproc_directive] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_typedef] = ACTIONS(1706), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_do] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_goto] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_sizeof] = ACTIONS(1706), + [sym_number_literal] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym_true] = ACTIONS(1706), + [sym_false] = ACTIONS(1706), + [sym_null] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(82), }, [833] = { [sym_preproc_include] = STATE(205), @@ -35495,60 +41954,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [834] = { [sym_compound_statement] = STATE(977), @@ -35584,35 +42044,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [835] = { [sym_compound_statement] = STATE(629), @@ -35648,35 +42127,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [836] = { [sym_declaration] = STATE(978), @@ -35711,42 +42209,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2678), + [sym_false] = ACTIONS(2678), + [sym_null] = ACTIONS(2678), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [837] = { [sym_compound_statement] = STATE(635), @@ -35782,35 +42290,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [838] = { [sym_compound_statement] = STATE(980), @@ -35846,94 +42373,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [839] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1889), - [sym_preproc_directive] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_typedef] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_auto] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_inline] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_restrict] = ACTIONS(1889), - [anon_sym_volatile] = ACTIONS(1889), - [anon_sym__Atomic] = ACTIONS(1889), - [anon_sym_signed] = ACTIONS(1889), - [anon_sym_unsigned] = ACTIONS(1889), - [anon_sym_long] = ACTIONS(1889), - [anon_sym_short] = ACTIONS(1889), - [sym_primitive_type] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_sizeof] = ACTIONS(1889), - [sym_number_literal] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1886), + [sym_preproc_directive] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_typedef] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_auto] = ACTIONS(1886), + [anon_sym_register] = ACTIONS(1886), + [anon_sym_inline] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_restrict] = ACTIONS(1886), + [anon_sym_volatile] = ACTIONS(1886), + [anon_sym__Atomic] = ACTIONS(1886), + [anon_sym_signed] = ACTIONS(1886), + [anon_sym_unsigned] = ACTIONS(1886), + [anon_sym_long] = ACTIONS(1886), + [anon_sym_short] = ACTIONS(1886), + [sym_primitive_type] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_goto] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_sizeof] = ACTIONS(1886), + [sym_number_literal] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1886), + [sym_comment] = ACTIONS(82), }, [840] = { [sym_compound_statement] = STATE(731), @@ -35971,38 +42517,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), [aux_sym_switch_body_repeat1] = STATE(731), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [841] = { [sym__expression] = STATE(982), @@ -36026,83 +42590,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(982), [sym_concatenated_string] = STATE(982), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [sym_null] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2687), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [sym_null] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2684), + [sym_comment] = ACTIONS(82), }, [842] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_typedef] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_LPAREN2] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_auto] = ACTIONS(1919), - [anon_sym_register] = ACTIONS(1919), - [anon_sym_inline] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_restrict] = ACTIONS(1919), - [anon_sym_volatile] = ACTIONS(1919), - [anon_sym__Atomic] = ACTIONS(1919), - [anon_sym_signed] = ACTIONS(1919), - [anon_sym_unsigned] = ACTIONS(1919), - [anon_sym_long] = ACTIONS(1919), - [anon_sym_short] = ACTIONS(1919), - [sym_primitive_type] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_union] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_switch] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_do] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_goto] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_sizeof] = ACTIONS(1919), - [sym_number_literal] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym_true] = ACTIONS(1919), - [sym_false] = ACTIONS(1919), - [sym_null] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1919), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1916), + [sym_preproc_directive] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym__Atomic] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1916), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [sym_null] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1916), + [sym_comment] = ACTIONS(82), }, [843] = { [sym__expression] = STATE(985), @@ -36125,66 +42716,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(985), [sym_concatenated_string] = STATE(985), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2693), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2686), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2688), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2690), + [sym_comment] = ACTIONS(82), }, [844] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [845] = { [sym__expression] = STATE(987), @@ -36207,90 +42825,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(987), [sym_concatenated_string] = STATE(987), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [sym_null] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2699), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [sym_null] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2696), + [sym_comment] = ACTIONS(82), }, [846] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1971), - [sym_preproc_directive] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_typedef] = ACTIONS(1971), - [anon_sym_extern] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1971), - [anon_sym_register] = ACTIONS(1971), - [anon_sym_inline] = ACTIONS(1971), - [anon_sym_const] = ACTIONS(1971), - [anon_sym_restrict] = ACTIONS(1971), - [anon_sym_volatile] = ACTIONS(1971), - [anon_sym__Atomic] = ACTIONS(1971), - [anon_sym_signed] = ACTIONS(1971), - [anon_sym_unsigned] = ACTIONS(1971), - [anon_sym_long] = ACTIONS(1971), - [anon_sym_short] = ACTIONS(1971), - [sym_primitive_type] = ACTIONS(1971), - [anon_sym_enum] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_union] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_switch] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_do] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_goto] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_sizeof] = ACTIONS(1971), - [sym_number_literal] = ACTIONS(1969), - [anon_sym_SQUOTE] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_null] = ACTIONS(1971), - [sym_identifier] = ACTIONS(1971), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1968), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1968), + [sym_comment] = ACTIONS(82), }, [847] = { - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_LPAREN2] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [sym_comment] = ACTIONS(82), }, [848] = { [sym__expression] = STATE(75), @@ -36313,123 +42958,150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [849] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2700), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [850] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [851] = { [sym__expression] = STATE(991), @@ -36452,66 +43124,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(991), [sym_concatenated_string] = STATE(991), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [sym_null] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2711), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [sym_null] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2708), + [sym_comment] = ACTIONS(82), }, [852] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [853] = { [sym_compound_statement] = STATE(936), @@ -36547,78 +43246,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [854] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(994), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [855] = { [sym__expression] = STATE(995), @@ -36641,88 +43359,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(995), [sym_concatenated_string] = STATE(995), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [sym_null] = ACTIONS(2719), - [sym_identifier] = ACTIONS(2719), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2716), + [sym_false] = ACTIONS(2716), + [sym_null] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2716), + [sym_comment] = ACTIONS(82), }, [856] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [857] = { - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RPAREN] = ACTIONS(2723), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [sym_comment] = ACTIONS(82), }, [858] = { - [anon_sym_COMMA] = ACTIONS(2725), - [anon_sym_RPAREN] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_EQ] = ACTIONS(2725), - [anon_sym_COLON] = ACTIONS(2725), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_LPAREN2] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2722), + [anon_sym_COLON] = ACTIONS(2722), + [sym_comment] = ACTIONS(82), }, [859] = { [aux_sym_parameter_list_repeat1] = STATE(859), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_RPAREN] = ACTIONS(2723), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2720), + [sym_comment] = ACTIONS(82), }, [860] = { [sym__declarator] = STATE(294), @@ -36736,34 +43481,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(997), [sym_parameter_list] = STATE(213), [aux_sym_type_definition_repeat1] = STATE(997), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(633), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(634), + [sym_comment] = ACTIONS(82), }, [861] = { - [anon_sym_COMMA] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(2727), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [862] = { [sym__declarator] = STATE(520), @@ -36777,66 +43545,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(998), [sym_parameter_list] = STATE(213), [aux_sym_type_definition_repeat1] = STATE(998), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1349), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(82), }, [863] = { [sym_storage_class_specifier] = STATE(863), [sym_type_qualifier] = STATE(863), [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(866), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_const] = ACTIONS(869), - [anon_sym_restrict] = ACTIONS(869), - [anon_sym_volatile] = ACTIONS(869), - [anon_sym__Atomic] = ACTIONS(869), - [sym_identifier] = ACTIONS(872), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_RPAREN] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(867), + [anon_sym_auto] = ACTIONS(867), + [anon_sym_register] = ACTIONS(867), + [anon_sym_inline] = ACTIONS(867), + [anon_sym_const] = ACTIONS(870), + [anon_sym_restrict] = ACTIONS(870), + [anon_sym_volatile] = ACTIONS(870), + [anon_sym__Atomic] = ACTIONS(870), + [sym_identifier] = ACTIONS(873), + [sym_comment] = ACTIONS(82), }, [864] = { [sym_storage_class_specifier] = STATE(863), [sym_type_qualifier] = STATE(863), [aux_sym__declaration_specifiers_repeat1] = STATE(863), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1500), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [sym_identifier] = ACTIONS(1499), + [sym_comment] = ACTIONS(82), }, [865] = { - [anon_sym_COMMA] = ACTIONS(2737), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2737), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2734), + [sym_comment] = ACTIONS(82), }, [866] = { [sym__expression] = STATE(75), @@ -36859,198 +43650,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [867] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2739), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [868] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2611), + [anon_sym_RPAREN] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [869] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_RBRACK] = ACTIONS(2741), - [anon_sym_EQ] = ACTIONS(2743), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_STAR_EQ] = ACTIONS(2741), - [anon_sym_SLASH_EQ] = ACTIONS(2741), - [anon_sym_PERCENT_EQ] = ACTIONS(2741), - [anon_sym_PLUS_EQ] = ACTIONS(2741), - [anon_sym_DASH_EQ] = ACTIONS(2741), - [anon_sym_LT_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_GT_EQ] = ACTIONS(2741), - [anon_sym_AMP_EQ] = ACTIONS(2741), - [anon_sym_CARET_EQ] = ACTIONS(2741), - [anon_sym_PIPE_EQ] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2743), - [anon_sym_CARET] = ACTIONS(2743), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2743), - [anon_sym_GT] = ACTIONS(2743), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2743), - [anon_sym_GT_GT] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_SLASH] = ACTIONS(2743), - [anon_sym_PERCENT] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_DASH_GT] = ACTIONS(2741), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_LPAREN2] = ACTIONS(2738), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_RBRACK] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym_COLON] = ACTIONS(2738), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_STAR_EQ] = ACTIONS(2738), + [anon_sym_SLASH_EQ] = ACTIONS(2738), + [anon_sym_PERCENT_EQ] = ACTIONS(2738), + [anon_sym_PLUS_EQ] = ACTIONS(2738), + [anon_sym_DASH_EQ] = ACTIONS(2738), + [anon_sym_LT_LT_EQ] = ACTIONS(2738), + [anon_sym_GT_GT_EQ] = ACTIONS(2738), + [anon_sym_AMP_EQ] = ACTIONS(2738), + [anon_sym_CARET_EQ] = ACTIONS(2738), + [anon_sym_PIPE_EQ] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2738), + [anon_sym_AMP_AMP] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2738), + [anon_sym_BANG_EQ] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2738), + [anon_sym_GT_EQ] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DOT] = ACTIONS(2738), + [anon_sym_DASH_GT] = ACTIONS(2738), + [sym_comment] = ACTIONS(82), }, [870] = { - [anon_sym_RPAREN] = ACTIONS(2745), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2742), + [sym_comment] = ACTIONS(82), }, [871] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2747), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2744), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [872] = { [sym_type_qualifier] = STATE(73), @@ -37084,84 +43902,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(68), [aux_sym_type_definition_repeat1] = STATE(73), [aux_sym_sized_type_specifier_repeat1] = STATE(74), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(125), - [anon_sym_unsigned] = ACTIONS(125), - [anon_sym_long] = ACTIONS(125), - [anon_sym_short] = ACTIONS(125), - [sym_primitive_type] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(141), - [sym_false] = ACTIONS(141), - [sym_null] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(126), + [anon_sym_unsigned] = ACTIONS(126), + [anon_sym_long] = ACTIONS(126), + [anon_sym_short] = ACTIONS(126), + [sym_primitive_type] = ACTIONS(128), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_null] = ACTIONS(142), + [sym_identifier] = ACTIONS(144), + [sym_comment] = ACTIONS(82), }, [873] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(611), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [874] = { - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2749), - [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2746), + [anon_sym_DOT] = ACTIONS(2746), + [sym_comment] = ACTIONS(82), }, [875] = { [sym__expression] = STATE(1004), @@ -37189,28 +44022,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(1004), [sym_string_literal] = STATE(692), [aux_sym_initializer_pair_repeat1] = STATE(693), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [sym_null] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2755), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1785), + [sym_number_literal] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [sym_null] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2752), + [sym_comment] = ACTIONS(82), }, [876] = { [sym__expression] = STATE(309), @@ -37233,24 +44093,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(309), [sym_concatenated_string] = STATE(309), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_null] = ACTIONS(665), - [sym_identifier] = ACTIONS(665), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(664), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_null] = ACTIONS(666), + [sym_identifier] = ACTIONS(666), + [sym_comment] = ACTIONS(82), }, [877] = { [sym__expression] = STATE(1006), @@ -37273,24 +44160,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1006), [sym_concatenated_string] = STATE(1006), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [sym_null] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2759), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_null] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2756), + [sym_comment] = ACTIONS(82), }, [878] = { [sym__expression] = STATE(1007), @@ -37313,24 +44227,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1007), [sym_concatenated_string] = STATE(1007), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_null] = ACTIONS(2763), - [sym_identifier] = ACTIONS(2763), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [sym_null] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2760), + [sym_comment] = ACTIONS(82), }, [879] = { [sym__expression] = STATE(1008), @@ -37353,24 +44294,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1008), [sym_concatenated_string] = STATE(1008), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_null] = ACTIONS(2767), - [sym_identifier] = ACTIONS(2767), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_null] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(82), }, [880] = { [sym__expression] = STATE(1009), @@ -37393,24 +44361,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1009), [sym_concatenated_string] = STATE(1009), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2771), - [sym_false] = ACTIONS(2771), - [sym_null] = ACTIONS(2771), - [sym_identifier] = ACTIONS(2771), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [sym_null] = ACTIONS(2768), + [sym_identifier] = ACTIONS(2768), + [sym_comment] = ACTIONS(82), }, [881] = { [sym__expression] = STATE(1010), @@ -37433,24 +44428,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1010), [sym_concatenated_string] = STATE(1010), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2773), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2775), - [sym_false] = ACTIONS(2775), - [sym_null] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2775), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [sym_null] = ACTIONS(2772), + [sym_identifier] = ACTIONS(2772), + [sym_comment] = ACTIONS(82), }, [882] = { [sym__expression] = STATE(1011), @@ -37473,24 +44495,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1011), [sym_concatenated_string] = STATE(1011), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [sym_null] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2779), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [sym_null] = ACTIONS(2776), + [sym_identifier] = ACTIONS(2776), + [sym_comment] = ACTIONS(82), }, [883] = { [sym__expression] = STATE(1012), @@ -37513,24 +44562,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1012), [sym_concatenated_string] = STATE(1012), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2781), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2783), - [sym_false] = ACTIONS(2783), - [sym_null] = ACTIONS(2783), - [sym_identifier] = ACTIONS(2783), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [sym_null] = ACTIONS(2780), + [sym_identifier] = ACTIONS(2780), + [sym_comment] = ACTIONS(82), }, [884] = { [sym__expression] = STATE(1013), @@ -37553,24 +44629,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1013), [sym_concatenated_string] = STATE(1013), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2787), - [sym_false] = ACTIONS(2787), - [sym_null] = ACTIONS(2787), - [sym_identifier] = ACTIONS(2787), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [sym_null] = ACTIONS(2784), + [sym_identifier] = ACTIONS(2784), + [sym_comment] = ACTIONS(82), }, [885] = { [sym__expression] = STATE(1014), @@ -37593,24 +44696,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1014), [sym_concatenated_string] = STATE(1014), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2789), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2791), - [sym_false] = ACTIONS(2791), - [sym_null] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2791), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_null] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2788), + [sym_comment] = ACTIONS(82), }, [886] = { [sym__expression] = STATE(1015), @@ -37633,24 +44763,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1015), [sym_concatenated_string] = STATE(1015), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [sym_null] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2795), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [sym_null] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2792), + [sym_comment] = ACTIONS(82), }, [887] = { [sym__expression] = STATE(1016), @@ -37673,74 +44830,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1016), [sym_concatenated_string] = STATE(1016), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2797), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2799), - [sym_false] = ACTIONS(2799), - [sym_null] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2799), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [sym_null] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2796), + [sym_comment] = ACTIONS(82), }, [888] = { [aux_sym_initializer_list_repeat1] = STATE(1018), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2751), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2748), + [sym_comment] = ACTIONS(82), }, [889] = { [sym_string_literal] = STATE(1019), [aux_sym_concatenated_string_repeat1] = STATE(1019), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(749), - [anon_sym_STAR_EQ] = ACTIONS(749), - [anon_sym_SLASH_EQ] = ACTIONS(749), - [anon_sym_PERCENT_EQ] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(749), - [anon_sym_DASH_EQ] = ACTIONS(749), - [anon_sym_LT_LT_EQ] = ACTIONS(749), - [anon_sym_GT_GT_EQ] = ACTIONS(749), - [anon_sym_AMP_EQ] = ACTIONS(749), - [anon_sym_CARET_EQ] = ACTIONS(749), - [anon_sym_PIPE_EQ] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DASH_GT] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_STAR_EQ] = ACTIONS(750), + [anon_sym_SLASH_EQ] = ACTIONS(750), + [anon_sym_PERCENT_EQ] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_comment] = ACTIONS(82), }, [890] = { [sym__expression] = STATE(1020), @@ -37764,59 +44948,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1020), [sym_concatenated_string] = STATE(1020), [sym_string_literal] = STATE(692), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_null] = ACTIONS(2805), - [sym_identifier] = ACTIONS(2805), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(2800), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_null] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2802), + [sym_comment] = ACTIONS(82), }, [891] = { [sym_subscript_designator] = STATE(891), [sym_field_designator] = STATE(891), [aux_sym_initializer_pair_repeat1] = STATE(891), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_EQ] = ACTIONS(2810), - [anon_sym_DOT] = ACTIONS(2812), - [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_EQ] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(2809), + [sym_comment] = ACTIONS(82), }, [892] = { - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_auto] = ACTIONS(2817), - [anon_sym_register] = ACTIONS(2817), - [anon_sym_inline] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_restrict] = ACTIONS(2817), - [anon_sym_volatile] = ACTIONS(2817), - [anon_sym__Atomic] = ACTIONS(2817), - [anon_sym_COLON] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_RPAREN] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2814), + [anon_sym_LPAREN2] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2814), + [anon_sym_register] = ACTIONS(2814), + [anon_sym_inline] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_restrict] = ACTIONS(2814), + [anon_sym_volatile] = ACTIONS(2814), + [anon_sym__Atomic] = ACTIONS(2814), + [anon_sym_COLON] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2814), + [sym_comment] = ACTIONS(82), }, [893] = { [sym_enumerator] = STATE(696), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(484), + [sym_comment] = ACTIONS(82), }, [894] = { [sym_preproc_if_in_field_declaration_list] = STATE(1022), @@ -37835,29 +45073,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1022), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2819), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2816), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [895] = { [sym_preproc_if_in_field_declaration_list] = STATE(1024), @@ -37878,63 +45126,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1024), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1816), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1815), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1817), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [896] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2825), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2825), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2825), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2825), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2823), - [anon_sym_auto] = ACTIONS(2823), - [anon_sym_register] = ACTIONS(2823), - [anon_sym_inline] = ACTIONS(2823), - [anon_sym_const] = ACTIONS(2823), - [anon_sym_restrict] = ACTIONS(2823), - [anon_sym_volatile] = ACTIONS(2823), - [anon_sym__Atomic] = ACTIONS(2823), - [anon_sym_signed] = ACTIONS(2823), - [anon_sym_unsigned] = ACTIONS(2823), - [anon_sym_long] = ACTIONS(2823), - [anon_sym_short] = ACTIONS(2823), - [sym_primitive_type] = ACTIONS(2823), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_union] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2823), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2820), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2822), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_auto] = ACTIONS(2820), + [anon_sym_register] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_restrict] = ACTIONS(2820), + [anon_sym_volatile] = ACTIONS(2820), + [anon_sym__Atomic] = ACTIONS(2820), + [anon_sym_signed] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2820), + [anon_sym_long] = ACTIONS(2820), + [anon_sym_short] = ACTIONS(2820), + [sym_primitive_type] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2820), + [sym_comment] = ACTIONS(82), }, [897] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2827), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2824), + [sym_comment] = ACTIONS(82), }, [898] = { [sym_preproc_if_in_field_declaration_list] = STATE(898), @@ -37953,63 +45211,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1855), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1855), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_auto] = ACTIONS(1852), - [anon_sym_register] = ACTIONS(1852), - [anon_sym_inline] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_restrict] = ACTIONS(1857), - [anon_sym_volatile] = ACTIONS(1857), - [anon_sym__Atomic] = ACTIONS(1857), - [anon_sym_signed] = ACTIONS(1860), - [anon_sym_unsigned] = ACTIONS(1860), - [anon_sym_long] = ACTIONS(1860), - [anon_sym_short] = ACTIONS(1860), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1875), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1843), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1846), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1846), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1852), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_auto] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1849), + [anon_sym_inline] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_restrict] = ACTIONS(1854), + [anon_sym_volatile] = ACTIONS(1854), + [anon_sym__Atomic] = ACTIONS(1854), + [anon_sym_signed] = ACTIONS(1857), + [anon_sym_unsigned] = ACTIONS(1857), + [anon_sym_long] = ACTIONS(1857), + [anon_sym_short] = ACTIONS(1857), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1872), + [sym_comment] = ACTIONS(82), }, [899] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2831), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_auto] = ACTIONS(2829), - [anon_sym_register] = ACTIONS(2829), - [anon_sym_inline] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_restrict] = ACTIONS(2829), - [anon_sym_volatile] = ACTIONS(2829), - [anon_sym__Atomic] = ACTIONS(2829), - [anon_sym_signed] = ACTIONS(2829), - [anon_sym_unsigned] = ACTIONS(2829), - [anon_sym_long] = ACTIONS(2829), - [anon_sym_short] = ACTIONS(2829), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2829), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2826), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2828), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2828), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2828), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2828), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2826), + [anon_sym_auto] = ACTIONS(2826), + [anon_sym_register] = ACTIONS(2826), + [anon_sym_inline] = ACTIONS(2826), + [anon_sym_const] = ACTIONS(2826), + [anon_sym_restrict] = ACTIONS(2826), + [anon_sym_volatile] = ACTIONS(2826), + [anon_sym__Atomic] = ACTIONS(2826), + [anon_sym_signed] = ACTIONS(2826), + [anon_sym_unsigned] = ACTIONS(2826), + [anon_sym_long] = ACTIONS(2826), + [anon_sym_short] = ACTIONS(2826), + [sym_primitive_type] = ACTIONS(2826), + [anon_sym_enum] = ACTIONS(2826), + [anon_sym_struct] = ACTIONS(2826), + [anon_sym_union] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2826), + [sym_comment] = ACTIONS(82), }, [900] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2833), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2830), + [sym_comment] = ACTIONS(82), }, [901] = { [sym__field_declarator] = STATE(903), @@ -38018,42 +45286,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_field_declarator] = STATE(903), [sym_type_qualifier] = STATE(521), [aux_sym_type_definition_repeat1] = STATE(521), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1828), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1191), + [sym_comment] = ACTIONS(82), }, [902] = { - [anon_sym_COMMA] = ACTIONS(2835), - [anon_sym_RPAREN] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_COLON] = ACTIONS(2835), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2832), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_LPAREN2] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_COLON] = ACTIONS(2832), + [sym_comment] = ACTIONS(82), }, [903] = { [sym_parameter_list] = STATE(716), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_COLON] = ACTIONS(2837), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(2834), + [sym_comment] = ACTIONS(82), }, [904] = { [sym_parameter_list] = STATE(716), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_COLON] = ACTIONS(2839), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(2836), + [sym_comment] = ACTIONS(82), }, [905] = { [sym__expression] = STATE(75), @@ -38076,75 +45367,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [906] = { - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_COLON] = ACTIONS(2843), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_COLON] = ACTIONS(2840), + [sym_comment] = ACTIONS(82), }, [907] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2841), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2838), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [908] = { [sym_type_qualifier] = STATE(677), @@ -38169,68 +45487,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(1029), [sym_string_literal] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(677), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2849), - [sym_false] = ACTIONS(2849), - [sym_null] = ACTIONS(2849), - [sym_identifier] = ACTIONS(2849), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_RBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2844), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_null] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2846), + [sym_comment] = ACTIONS(82), }, [909] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2851), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_auto] = ACTIONS(2851), - [anon_sym_register] = ACTIONS(2851), - [anon_sym_inline] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_restrict] = ACTIONS(2851), - [anon_sym_volatile] = ACTIONS(2851), - [anon_sym__Atomic] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2851), - [anon_sym_unsigned] = ACTIONS(2851), - [anon_sym_long] = ACTIONS(2851), - [anon_sym_short] = ACTIONS(2851), - [sym_primitive_type] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [sym_identifier] = ACTIONS(2851), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2848), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2850), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2850), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2850), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2850), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_auto] = ACTIONS(2848), + [anon_sym_register] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_restrict] = ACTIONS(2848), + [anon_sym_volatile] = ACTIONS(2848), + [anon_sym__Atomic] = ACTIONS(2848), + [anon_sym_signed] = ACTIONS(2848), + [anon_sym_unsigned] = ACTIONS(2848), + [anon_sym_long] = ACTIONS(2848), + [anon_sym_short] = ACTIONS(2848), + [sym_primitive_type] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2848), + [sym_comment] = ACTIONS(82), }, [910] = { - [anon_sym_SEMI] = ACTIONS(2855), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2852), + [sym_comment] = ACTIONS(82), }, [911] = { [aux_sym_field_declaration_repeat1] = STATE(911), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_COLON] = ACTIONS(2839), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_COLON] = ACTIONS(2836), + [sym_comment] = ACTIONS(82), }, [912] = { [sym_compound_statement] = STATE(723), @@ -38266,35 +45607,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [913] = { [sym__expression] = STATE(1032), @@ -38317,66 +45677,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1032), [sym_concatenated_string] = STATE(1032), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2860), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2862), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_null] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2864), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2861), + [sym_comment] = ACTIONS(82), }, [914] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [915] = { [sym__expression] = STATE(1034), @@ -38399,116 +45786,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1034), [sym_concatenated_string] = STATE(1034), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_null] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2870), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_null] = ACTIONS(2867), + [sym_identifier] = ACTIONS(2867), + [sym_comment] = ACTIONS(82), }, [916] = { [sym_parenthesized_expression] = STATE(1035), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [917] = { [sym_parenthesized_expression] = STATE(1036), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [918] = { - [anon_sym_LPAREN2] = ACTIONS(2872), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(2869), + [sym_comment] = ACTIONS(82), }, [919] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(2871), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [920] = { - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [921] = { [sym_declaration] = STATE(1040), @@ -38558,122 +45972,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), [aux_sym_case_statement_repeat1] = STATE(1040), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2472), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(2877), + [anon_sym_default] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2469), + [sym_comment] = ACTIONS(82), }, [922] = { [sym_parenthesized_expression] = STATE(1041), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [923] = { [sym_parenthesized_expression] = STATE(1042), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [924] = { - [anon_sym_LPAREN2] = ACTIONS(2882), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(2879), + [sym_comment] = ACTIONS(82), }, [925] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_LPAREN2] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_static] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_inline] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym_COLON] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_identifier] = ACTIONS(238), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_extern] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_static] = ACTIONS(239), + [anon_sym_auto] = ACTIONS(239), + [anon_sym_register] = ACTIONS(239), + [anon_sym_inline] = ACTIONS(239), + [anon_sym_const] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(239), + [anon_sym_volatile] = ACTIONS(239), + [anon_sym__Atomic] = ACTIONS(239), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(82), }, [926] = { [sym_declaration] = STATE(1045), @@ -38723,56 +46137,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), [aux_sym_case_statement_repeat1] = STATE(1045), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2472), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(2877), + [anon_sym_default] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2469), + [sym_comment] = ACTIONS(82), }, [927] = { [sym__expression] = STATE(1047), @@ -38795,71 +46209,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1047), [sym_concatenated_string] = STATE(1047), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_null] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2890), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2887), + [sym_comment] = ACTIONS(82), }, [928] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [929] = { - [anon_sym_else] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(1214), - [sym_comment] = ACTIONS(81), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(1213), + [sym_comment] = ACTIONS(82), }, [930] = { [sym__expression] = STATE(1051), @@ -38882,66 +46323,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1051), [sym_concatenated_string] = STATE(1051), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2900), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2895), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2897), + [sym_comment] = ACTIONS(82), }, [931] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [932] = { [sym_compound_statement] = STATE(936), @@ -38977,78 +46445,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [933] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1054), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(2901), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [934] = { [sym__expression] = STATE(1055), @@ -39071,126 +46558,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1055), [sym_concatenated_string] = STATE(1055), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2908), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_null] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2905), + [sym_comment] = ACTIONS(82), }, [935] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [936] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_auto] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_signed] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_sizeof] = ACTIONS(2914), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2914), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(2909), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_auto] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_else] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2911), + [sym_comment] = ACTIONS(82), }, [937] = { [sym_compound_statement] = STATE(1057), @@ -39226,84 +46740,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [938] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(2916), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(82), }, [939] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1059), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [940] = { [sym__expression] = STATE(1060), @@ -39326,76 +46859,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1060), [sym_concatenated_string] = STATE(1060), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2916), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_null] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2920), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_null] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(82), }, [941] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [942] = { - [anon_sym_COMMA] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2922), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2919), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2919), + [sym_comment] = ACTIONS(82), }, [943] = { [sym__expression] = STATE(452), @@ -39419,55 +46979,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(317), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_RBRACK] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_PERCENT_EQ] = ACTIONS(1937), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_CARET_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(1937), - [anon_sym_AMP_AMP] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_DASH_GT] = ACTIONS(1937), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1934), + [anon_sym_STAR_EQ] = ACTIONS(1934), + [anon_sym_SLASH_EQ] = ACTIONS(1934), + [anon_sym_PERCENT_EQ] = ACTIONS(1934), + [anon_sym_PLUS_EQ] = ACTIONS(1934), + [anon_sym_DASH_EQ] = ACTIONS(1934), + [anon_sym_LT_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_GT_EQ] = ACTIONS(1934), + [anon_sym_AMP_EQ] = ACTIONS(1934), + [anon_sym_CARET_EQ] = ACTIONS(1934), + [anon_sym_PIPE_EQ] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(1934), + [anon_sym_DASH_GT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [944] = { [sym__expression] = STATE(1061), @@ -39490,24 +47077,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1061), [sym_concatenated_string] = STATE(1061), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_null] = ACTIONS(2930), - [sym_identifier] = ACTIONS(2930), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2927), + [sym_comment] = ACTIONS(82), }, [945] = { [sym__expression] = STATE(452), @@ -39531,55 +47145,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(326), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_COLON] = ACTIONS(1937), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_PERCENT_EQ] = ACTIONS(1937), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_CARET_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(2932), - [anon_sym_PIPE_PIPE] = ACTIONS(1937), - [anon_sym_AMP_AMP] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_DASH_GT] = ACTIONS(1937), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1934), + [anon_sym_STAR_EQ] = ACTIONS(1934), + [anon_sym_SLASH_EQ] = ACTIONS(1934), + [anon_sym_PERCENT_EQ] = ACTIONS(1934), + [anon_sym_PLUS_EQ] = ACTIONS(1934), + [anon_sym_DASH_EQ] = ACTIONS(1934), + [anon_sym_LT_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_GT_EQ] = ACTIONS(1934), + [anon_sym_AMP_EQ] = ACTIONS(1934), + [anon_sym_CARET_EQ] = ACTIONS(1934), + [anon_sym_PIPE_EQ] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(1934), + [anon_sym_DASH_GT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [946] = { [sym__expression] = STATE(1062), @@ -39602,609 +47243,636 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1062), [sym_concatenated_string] = STATE(1062), [sym_string_literal] = STATE(326), - [anon_sym_LPAREN2] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [sym_number_literal] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_null] = ACTIONS(2938), - [sym_identifier] = ACTIONS(2938), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_sizeof] = ACTIONS(702), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_null] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2935), + [sym_comment] = ACTIONS(82), }, [947] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2094), - [sym_preproc_directive] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_auto] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_restrict] = ACTIONS(2094), - [anon_sym_volatile] = ACTIONS(2094), - [anon_sym__Atomic] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(2094), - [anon_sym_unsigned] = ACTIONS(2094), - [anon_sym_long] = ACTIONS(2094), - [anon_sym_short] = ACTIONS(2094), - [sym_primitive_type] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = 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(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2094), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2091), + [sym_preproc_directive] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LPAREN2] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_auto] = ACTIONS(2091), + [anon_sym_register] = ACTIONS(2091), + [anon_sym_inline] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_restrict] = ACTIONS(2091), + [anon_sym_volatile] = ACTIONS(2091), + [anon_sym__Atomic] = ACTIONS(2091), + [anon_sym_signed] = ACTIONS(2091), + [anon_sym_unsigned] = ACTIONS(2091), + [anon_sym_long] = ACTIONS(2091), + [anon_sym_short] = ACTIONS(2091), + [sym_primitive_type] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_do] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_goto] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2091), + [sym_number_literal] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym_true] = ACTIONS(2091), + [sym_false] = ACTIONS(2091), + [sym_null] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2091), + [sym_comment] = ACTIONS(82), }, [948] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2251), - [sym_preproc_directive] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_typedef] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_LPAREN2] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_auto] = ACTIONS(2251), - [anon_sym_register] = ACTIONS(2251), - [anon_sym_inline] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_restrict] = ACTIONS(2251), - [anon_sym_volatile] = ACTIONS(2251), - [anon_sym__Atomic] = ACTIONS(2251), - [anon_sym_signed] = ACTIONS(2251), - [anon_sym_unsigned] = ACTIONS(2251), - [anon_sym_long] = ACTIONS(2251), - [anon_sym_short] = ACTIONS(2251), - [sym_primitive_type] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_goto] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_sizeof] = ACTIONS(2251), - [sym_number_literal] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2251), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2248), + [sym_preproc_directive] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_typedef] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_auto] = ACTIONS(2248), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_inline] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_restrict] = ACTIONS(2248), + [anon_sym_volatile] = ACTIONS(2248), + [anon_sym__Atomic] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(2248), + [anon_sym_unsigned] = ACTIONS(2248), + [anon_sym_long] = ACTIONS(2248), + [anon_sym_short] = ACTIONS(2248), + [sym_primitive_type] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2248), + [anon_sym_union] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_switch] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_goto] = ACTIONS(2248), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_sizeof] = ACTIONS(2248), + [sym_number_literal] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [sym_null] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2248), + [sym_comment] = ACTIONS(82), }, [949] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2255), - [sym_preproc_directive] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_typedef] = ACTIONS(2255), - [anon_sym_extern] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_auto] = ACTIONS(2255), - [anon_sym_register] = ACTIONS(2255), - [anon_sym_inline] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_restrict] = ACTIONS(2255), - [anon_sym_volatile] = ACTIONS(2255), - [anon_sym__Atomic] = ACTIONS(2255), - [anon_sym_signed] = ACTIONS(2255), - [anon_sym_unsigned] = ACTIONS(2255), - [anon_sym_long] = ACTIONS(2255), - [anon_sym_short] = ACTIONS(2255), - [sym_primitive_type] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_goto] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_sizeof] = ACTIONS(2255), - [sym_number_literal] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2255), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2252), + [sym_preproc_directive] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_typedef] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_auto] = ACTIONS(2252), + [anon_sym_register] = ACTIONS(2252), + [anon_sym_inline] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_restrict] = ACTIONS(2252), + [anon_sym_volatile] = ACTIONS(2252), + [anon_sym__Atomic] = ACTIONS(2252), + [anon_sym_signed] = ACTIONS(2252), + [anon_sym_unsigned] = ACTIONS(2252), + [anon_sym_long] = ACTIONS(2252), + [anon_sym_short] = ACTIONS(2252), + [sym_primitive_type] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_switch] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_goto] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym_true] = ACTIONS(2252), + [sym_false] = ACTIONS(2252), + [sym_null] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2252), + [sym_comment] = ACTIONS(82), }, [950] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_null] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_null] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1331), + [sym_comment] = ACTIONS(82), }, [951] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_null] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1510), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1509), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1509), + [sym_preproc_directive] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_goto] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_sizeof] = ACTIONS(1509), + [sym_number_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1509), + [sym_comment] = ACTIONS(82), }, [952] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_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(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1514), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1513), + [sym_preproc_directive] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_typedef] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_LPAREN2] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_goto] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_sizeof] = ACTIONS(1513), + [sym_number_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [sym_null] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1513), + [sym_comment] = ACTIONS(82), }, [953] = { - [anon_sym_LF] = ACTIONS(2940), - [sym_comment] = ACTIONS(91), + [anon_sym_LF] = ACTIONS(2937), + [sym_comment] = ACTIONS(92), }, [954] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1608), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1608), - [sym_preproc_directive] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_typedef] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_auto] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_inline] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_restrict] = ACTIONS(1608), - [anon_sym_volatile] = ACTIONS(1608), - [anon_sym__Atomic] = ACTIONS(1608), - [anon_sym_signed] = ACTIONS(1608), - [anon_sym_unsigned] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [sym_primitive_type] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_goto] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_sizeof] = ACTIONS(1608), - [sym_number_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [sym_true] = ACTIONS(1608), - [sym_false] = ACTIONS(1608), - [sym_null] = ACTIONS(1608), - [sym_identifier] = ACTIONS(1608), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1607), + [sym_preproc_directive] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym_true] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), + [sym_comment] = ACTIONS(82), }, [955] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2942), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2939), + [sym_comment] = ACTIONS(82), }, [956] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1681), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1681), - [sym_preproc_directive] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_auto] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym__Atomic] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1681), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_null] = ACTIONS(1681), - [sym_identifier] = ACTIONS(1681), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1680), + [sym_preproc_directive] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_auto] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1680), + [anon_sym_inline] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1680), + [anon_sym_unsigned] = ACTIONS(1680), + [anon_sym_long] = ACTIONS(1680), + [anon_sym_short] = ACTIONS(1680), + [sym_primitive_type] = 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_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(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1680), + [sym_false] = ACTIONS(1680), + [sym_null] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1680), + [sym_comment] = ACTIONS(82), }, [957] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2941), + [sym_comment] = ACTIONS(82), }, [958] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1691), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1691), - [sym_preproc_directive] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_auto] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_identifier] = ACTIONS(1691), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1690), + [sym_preproc_directive] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_typedef] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_auto] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_inline] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_restrict] = ACTIONS(1690), + [anon_sym_volatile] = ACTIONS(1690), + [anon_sym__Atomic] = ACTIONS(1690), + [anon_sym_signed] = ACTIONS(1690), + [anon_sym_unsigned] = ACTIONS(1690), + [anon_sym_long] = ACTIONS(1690), + [anon_sym_short] = ACTIONS(1690), + [sym_primitive_type] = 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_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(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym_true] = ACTIONS(1690), + [sym_false] = ACTIONS(1690), + [sym_null] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(82), }, [959] = { [sym_parameter_list] = STATE(407), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(1019), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(1018), + [sym_comment] = ACTIONS(82), }, [960] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1707), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1706), + [sym_preproc_directive] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_typedef] = ACTIONS(1706), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_auto] = ACTIONS(1706), + [anon_sym_register] = ACTIONS(1706), + [anon_sym_inline] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_restrict] = ACTIONS(1706), + [anon_sym_volatile] = ACTIONS(1706), + [anon_sym__Atomic] = ACTIONS(1706), + [anon_sym_signed] = ACTIONS(1706), + [anon_sym_unsigned] = ACTIONS(1706), + [anon_sym_long] = ACTIONS(1706), + [anon_sym_short] = ACTIONS(1706), + [sym_primitive_type] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_do] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_goto] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_sizeof] = ACTIONS(1706), + [sym_number_literal] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym_true] = ACTIONS(1706), + [sym_false] = ACTIONS(1706), + [sym_null] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(82), }, [961] = { [sym_preproc_include] = STATE(205), @@ -40263,60 +47931,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(41), [aux_sym_sized_type_specifier_repeat1] = STATE(42), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(33), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(119), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(8), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(10), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(12), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(14), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(14), + [sym_preproc_directive] = ACTIONS(16), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(22), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(34), + [anon_sym_unsigned] = ACTIONS(34), + [anon_sym_long] = ACTIONS(34), + [anon_sym_short] = ACTIONS(34), + [sym_primitive_type] = ACTIONS(36), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(120), + [sym_comment] = ACTIONS(82), }, [962] = { [sym_compound_statement] = STATE(1068), @@ -40352,35 +48021,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [963] = { [sym_compound_statement] = STATE(819), @@ -40416,35 +48104,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [964] = { [sym_declaration] = STATE(1069), @@ -40479,42 +48186,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_null] = ACTIONS(2954), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_null] = ACTIONS(2951), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [965] = { [sym_compound_statement] = STATE(825), @@ -40550,35 +48267,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [966] = { [sym_compound_statement] = STATE(1071), @@ -40614,92 +48350,111 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [967] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1889), - [sym_preproc_directive] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_typedef] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_auto] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_inline] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_restrict] = ACTIONS(1889), - [anon_sym_volatile] = ACTIONS(1889), - [anon_sym__Atomic] = ACTIONS(1889), - [anon_sym_signed] = ACTIONS(1889), - [anon_sym_unsigned] = ACTIONS(1889), - [anon_sym_long] = ACTIONS(1889), - [anon_sym_short] = ACTIONS(1889), - [sym_primitive_type] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_sizeof] = ACTIONS(1889), - [sym_number_literal] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1886), + [sym_preproc_directive] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_typedef] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_auto] = ACTIONS(1886), + [anon_sym_register] = ACTIONS(1886), + [anon_sym_inline] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_restrict] = ACTIONS(1886), + [anon_sym_volatile] = ACTIONS(1886), + [anon_sym__Atomic] = ACTIONS(1886), + [anon_sym_signed] = ACTIONS(1886), + [anon_sym_unsigned] = ACTIONS(1886), + [anon_sym_long] = ACTIONS(1886), + [anon_sym_short] = ACTIONS(1886), + [sym_primitive_type] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_goto] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_sizeof] = ACTIONS(1886), + [sym_number_literal] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1886), + [sym_comment] = ACTIONS(82), }, [968] = { [sym_compound_statement] = STATE(731), @@ -40737,38 +48492,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), [aux_sym_switch_body_repeat1] = STATE(731), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [969] = { [sym__expression] = STATE(1073), @@ -40792,81 +48565,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1073), [sym_concatenated_string] = STATE(1073), [sym_string_literal] = STATE(72), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2960), - [sym_false] = ACTIONS(2960), - [sym_null] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2960), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2957), + [sym_comment] = ACTIONS(82), }, [970] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1919), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_typedef] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_LPAREN2] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_auto] = ACTIONS(1919), - [anon_sym_register] = ACTIONS(1919), - [anon_sym_inline] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_restrict] = ACTIONS(1919), - [anon_sym_volatile] = ACTIONS(1919), - [anon_sym__Atomic] = ACTIONS(1919), - [anon_sym_signed] = ACTIONS(1919), - [anon_sym_unsigned] = ACTIONS(1919), - [anon_sym_long] = ACTIONS(1919), - [anon_sym_short] = ACTIONS(1919), - [sym_primitive_type] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_union] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_switch] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_do] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_goto] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1917), - [anon_sym_sizeof] = ACTIONS(1919), - [sym_number_literal] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym_true] = ACTIONS(1919), - [sym_false] = ACTIONS(1919), - [sym_null] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1919), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1916), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1916), + [sym_preproc_directive] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym__Atomic] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1916), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [sym_null] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1916), + [sym_comment] = ACTIONS(82), }, [971] = { [sym__expression] = STATE(1076), @@ -40889,66 +48689,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1076), [sym_concatenated_string] = STATE(1076), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2962), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_null] = ACTIONS(2966), - [sym_identifier] = ACTIONS(2966), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [sym_null] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2963), + [sym_comment] = ACTIONS(82), }, [972] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [973] = { [sym__expression] = STATE(1078), @@ -40971,256 +48798,283 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1078), [sym_concatenated_string] = STATE(1078), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2972), - [sym_false] = ACTIONS(2972), - [sym_null] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2972), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_null] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2969), + [sym_comment] = ACTIONS(82), }, [974] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1971), - [sym_preproc_directive] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_typedef] = ACTIONS(1971), - [anon_sym_extern] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_auto] = ACTIONS(1971), - [anon_sym_register] = ACTIONS(1971), - [anon_sym_inline] = ACTIONS(1971), - [anon_sym_const] = ACTIONS(1971), - [anon_sym_restrict] = ACTIONS(1971), - [anon_sym_volatile] = ACTIONS(1971), - [anon_sym__Atomic] = ACTIONS(1971), - [anon_sym_signed] = ACTIONS(1971), - [anon_sym_unsigned] = ACTIONS(1971), - [anon_sym_long] = ACTIONS(1971), - [anon_sym_short] = ACTIONS(1971), - [sym_primitive_type] = ACTIONS(1971), - [anon_sym_enum] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_union] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_switch] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_do] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_goto] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_sizeof] = ACTIONS(1971), - [sym_number_literal] = ACTIONS(1969), - [anon_sym_SQUOTE] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_null] = ACTIONS(1971), - [sym_identifier] = ACTIONS(1971), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1968), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1968), + [sym_comment] = ACTIONS(82), }, [975] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2273), - [sym_preproc_directive] = ACTIONS(2273), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_typedef] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_LPAREN2] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_auto] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_inline] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_restrict] = ACTIONS(2273), - [anon_sym_volatile] = ACTIONS(2273), - [anon_sym__Atomic] = ACTIONS(2273), - [anon_sym_signed] = ACTIONS(2273), - [anon_sym_unsigned] = ACTIONS(2273), - [anon_sym_long] = ACTIONS(2273), - [anon_sym_short] = ACTIONS(2273), - [sym_primitive_type] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2271), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_sizeof] = ACTIONS(2273), - [sym_number_literal] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_null] = ACTIONS(2273), - [sym_identifier] = ACTIONS(2273), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2270), + [sym_preproc_directive] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_typedef] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_auto] = ACTIONS(2270), + [anon_sym_register] = ACTIONS(2270), + [anon_sym_inline] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_signed] = ACTIONS(2270), + [anon_sym_unsigned] = ACTIONS(2270), + [anon_sym_long] = ACTIONS(2270), + [anon_sym_short] = ACTIONS(2270), + [sym_primitive_type] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_switch] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_do] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_goto] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_sizeof] = ACTIONS(2270), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_true] = ACTIONS(2270), + [sym_false] = ACTIONS(2270), + [sym_null] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2270), + [sym_comment] = ACTIONS(82), }, [976] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2277), - [sym_preproc_directive] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_typedef] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_LPAREN2] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_auto] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_inline] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_restrict] = ACTIONS(2277), - [anon_sym_volatile] = ACTIONS(2277), - [anon_sym__Atomic] = ACTIONS(2277), - [anon_sym_signed] = ACTIONS(2277), - [anon_sym_unsigned] = ACTIONS(2277), - [anon_sym_long] = ACTIONS(2277), - [anon_sym_short] = ACTIONS(2277), - [sym_primitive_type] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_goto] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_sizeof] = ACTIONS(2277), - [sym_number_literal] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym_true] = ACTIONS(2277), - [sym_false] = ACTIONS(2277), - [sym_null] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2277), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2274), + [sym_preproc_directive] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_auto] = ACTIONS(2274), + [anon_sym_register] = ACTIONS(2274), + [anon_sym_inline] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_restrict] = ACTIONS(2274), + [anon_sym_volatile] = ACTIONS(2274), + [anon_sym__Atomic] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2274), + [anon_sym_unsigned] = ACTIONS(2274), + [anon_sym_long] = ACTIONS(2274), + [anon_sym_short] = ACTIONS(2274), + [sym_primitive_type] = ACTIONS(2274), + [anon_sym_enum] = ACTIONS(2274), + [anon_sym_struct] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_switch] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_do] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_sizeof] = ACTIONS(2274), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [sym_null] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2274), + [sym_comment] = ACTIONS(82), }, [977] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(2974), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [978] = { [sym__expression] = STATE(1081), @@ -41243,230 +49097,257 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1081), [sym_concatenated_string] = STATE(1081), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2980), - [sym_false] = ACTIONS(2980), - [sym_null] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2980), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_null] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2977), + [sym_comment] = ACTIONS(82), }, [979] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2982), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [980] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2450), - [sym_preproc_directive] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_typedef] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_LPAREN2] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_auto] = ACTIONS(2450), - [anon_sym_register] = ACTIONS(2450), - [anon_sym_inline] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_restrict] = ACTIONS(2450), - [anon_sym_volatile] = ACTIONS(2450), - [anon_sym__Atomic] = ACTIONS(2450), - [anon_sym_signed] = ACTIONS(2450), - [anon_sym_unsigned] = ACTIONS(2450), - [anon_sym_long] = ACTIONS(2450), - [anon_sym_short] = ACTIONS(2450), - [sym_primitive_type] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_do] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_goto] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_TILDE] = ACTIONS(2448), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2448), - [anon_sym_PLUS_PLUS] = ACTIONS(2448), - [anon_sym_sizeof] = ACTIONS(2450), - [sym_number_literal] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(2448), - [sym_true] = ACTIONS(2450), - [sym_false] = ACTIONS(2450), - [sym_null] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2450), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2447), + [sym_preproc_directive] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_typedef] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2447), + [anon_sym_auto] = ACTIONS(2447), + [anon_sym_register] = ACTIONS(2447), + [anon_sym_inline] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [anon_sym_restrict] = ACTIONS(2447), + [anon_sym_volatile] = ACTIONS(2447), + [anon_sym__Atomic] = ACTIONS(2447), + [anon_sym_signed] = ACTIONS(2447), + [anon_sym_unsigned] = ACTIONS(2447), + [anon_sym_long] = ACTIONS(2447), + [anon_sym_short] = ACTIONS(2447), + [sym_primitive_type] = ACTIONS(2447), + [anon_sym_enum] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2447), + [anon_sym_union] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_switch] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_do] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_goto] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), + [sym_number_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym_true] = ACTIONS(2447), + [sym_false] = ACTIONS(2447), + [sym_null] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2447), + [sym_comment] = ACTIONS(82), }, [981] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2482), - [sym_preproc_directive] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_auto] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_switch] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2482), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2482), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_auto] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2479), + [sym_comment] = ACTIONS(82), }, [982] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [983] = { - [anon_sym_RPAREN] = ACTIONS(2984), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2981), + [sym_comment] = ACTIONS(82), }, [984] = { [sym_compound_statement] = STATE(1084), @@ -41502,78 +49383,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [985] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1086), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [986] = { [sym__expression] = STATE(1087), @@ -41596,73 +49496,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1087), [sym_concatenated_string] = STATE(1087), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2988), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [sym_null] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2990), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2987), + [sym_false] = ACTIONS(2987), + [sym_null] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2987), + [sym_comment] = ACTIONS(82), }, [987] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [988] = { - [anon_sym_RPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2991), + [sym_comment] = ACTIONS(82), }, [989] = { [sym_compound_statement] = STATE(723), @@ -41698,35 +49625,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [990] = { [sym__expression] = STATE(1090), @@ -41749,66 +49695,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1090), [sym_concatenated_string] = STATE(1090), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3000), - [sym_false] = ACTIONS(3000), - [sym_null] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3000), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_null] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2997), + [sym_comment] = ACTIONS(82), }, [991] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [992] = { [sym__expression] = STATE(1092), @@ -41831,25 +49804,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1092), [sym_concatenated_string] = STATE(1092), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3006), - [sym_false] = ACTIONS(3006), - [sym_null] = ACTIONS(3006), - [sym_identifier] = ACTIONS(3006), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3003), + [sym_false] = ACTIONS(3003), + [sym_null] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3003), + [sym_comment] = ACTIONS(82), }, [993] = { [sym_compound_statement] = STATE(1057), @@ -41885,84 +49885,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [994] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3008), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3005), + [sym_comment] = ACTIONS(82), }, [995] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1094), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3008), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [996] = { [sym__expression] = STATE(1095), @@ -41985,25 +50004,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1095), [sym_concatenated_string] = STATE(1095), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3008), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3012), - [sym_false] = ACTIONS(3012), - [sym_null] = ACTIONS(3012), - [sym_identifier] = ACTIONS(3012), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_null] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3009), + [sym_comment] = ACTIONS(82), }, [997] = { [sym__declarator] = STATE(520), @@ -42017,38 +50063,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(1096), [sym_parameter_list] = STATE(213), [aux_sym_type_definition_repeat1] = STATE(1096), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1349), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(82), }, [998] = { [sym_type_qualifier] = STATE(998), [aux_sym_type_definition_repeat1] = STATE(998), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_restrict] = ACTIONS(1021), - [anon_sym_volatile] = ACTIONS(1021), - [anon_sym__Atomic] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1024), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1023), + [sym_comment] = ACTIONS(82), }, [999] = { - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [sym_comment] = ACTIONS(82), }, [1000] = { [sym__expression] = STATE(452), @@ -42072,588 +50141,615 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(692), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [1001] = { - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3016), - [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), + [sym_comment] = ACTIONS(82), }, [1002] = { - [anon_sym_RPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3015), + [sym_comment] = ACTIONS(82), }, [1003] = { - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_RPAREN] = ACTIONS(3020), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_RBRACK] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_COLON] = ACTIONS(3020), - [anon_sym_QMARK] = ACTIONS(3020), - [anon_sym_STAR_EQ] = ACTIONS(3020), - [anon_sym_SLASH_EQ] = ACTIONS(3020), - [anon_sym_PERCENT_EQ] = ACTIONS(3020), - [anon_sym_PLUS_EQ] = ACTIONS(3020), - [anon_sym_DASH_EQ] = ACTIONS(3020), - [anon_sym_LT_LT_EQ] = ACTIONS(3020), - [anon_sym_GT_GT_EQ] = ACTIONS(3020), - [anon_sym_AMP_EQ] = ACTIONS(3020), - [anon_sym_CARET_EQ] = ACTIONS(3020), - [anon_sym_PIPE_EQ] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3022), - [anon_sym_EQ_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_LT_EQ] = ACTIONS(3020), - [anon_sym_GT_EQ] = ACTIONS(3020), - [anon_sym_LT_LT] = ACTIONS(3022), - [anon_sym_GT_GT] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_DASH_DASH] = ACTIONS(3020), - [anon_sym_PLUS_PLUS] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3020), - [anon_sym_DASH_GT] = ACTIONS(3020), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3017), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_RBRACK] = ACTIONS(3017), + [anon_sym_EQ] = ACTIONS(3019), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_STAR_EQ] = ACTIONS(3017), + [anon_sym_SLASH_EQ] = ACTIONS(3017), + [anon_sym_PERCENT_EQ] = ACTIONS(3017), + [anon_sym_PLUS_EQ] = ACTIONS(3017), + [anon_sym_DASH_EQ] = ACTIONS(3017), + [anon_sym_LT_LT_EQ] = ACTIONS(3017), + [anon_sym_GT_GT_EQ] = ACTIONS(3017), + [anon_sym_AMP_EQ] = ACTIONS(3017), + [anon_sym_CARET_EQ] = ACTIONS(3017), + [anon_sym_PIPE_EQ] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3019), + [anon_sym_GT] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3017), + [anon_sym_GT_EQ] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_GT_GT] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_PLUS_PLUS] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_DASH_GT] = ACTIONS(3017), + [sym_comment] = ACTIONS(82), }, [1004] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2361), - [anon_sym_STAR_EQ] = ACTIONS(2363), - [anon_sym_SLASH_EQ] = ACTIONS(2363), - [anon_sym_PERCENT_EQ] = ACTIONS(2363), - [anon_sym_PLUS_EQ] = ACTIONS(2363), - [anon_sym_DASH_EQ] = ACTIONS(2363), - [anon_sym_LT_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_GT_EQ] = ACTIONS(2363), - [anon_sym_AMP_EQ] = ACTIONS(2363), - [anon_sym_CARET_EQ] = ACTIONS(2363), - [anon_sym_PIPE_EQ] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_RBRACE] = ACTIONS(3021), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(2356), + [anon_sym_QMARK] = ACTIONS(2358), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1005] = { - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_RBRACE] = ACTIONS(3024), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_RBRACE] = ACTIONS(3021), + [sym_comment] = ACTIONS(82), }, [1006] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(2363), - [anon_sym_SLASH_EQ] = ACTIONS(2363), - [anon_sym_PERCENT_EQ] = ACTIONS(2363), - [anon_sym_PLUS_EQ] = ACTIONS(2363), - [anon_sym_DASH_EQ] = ACTIONS(2363), - [anon_sym_LT_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_GT_EQ] = ACTIONS(2363), - [anon_sym_AMP_EQ] = ACTIONS(2363), - [anon_sym_CARET_EQ] = ACTIONS(2363), - [anon_sym_PIPE_EQ] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(2356), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1007] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1008] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1009] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1010] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PERCENT_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_LT_LT_EQ] = ACTIONS(1470), + [anon_sym_GT_GT_EQ] = ACTIONS(1470), + [anon_sym_AMP_EQ] = ACTIONS(1470), + [anon_sym_CARET_EQ] = ACTIONS(1470), + [anon_sym_PIPE_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1011] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1012] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1013] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1014] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1015] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1016] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1017] = { [sym__expression] = STATE(1004), @@ -42681,125 +50777,152 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(1004), [sym_string_literal] = STATE(692), [aux_sym_initializer_pair_repeat1] = STATE(693), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(3028), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [sym_null] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2755), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1785), + [sym_number_literal] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [sym_null] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2752), + [sym_comment] = ACTIONS(82), }, [1018] = { [aux_sym_initializer_list_repeat1] = STATE(1018), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3024), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_RBRACE] = ACTIONS(3021), + [sym_comment] = ACTIONS(82), }, [1019] = { [sym_string_literal] = STATE(1019), [aux_sym_concatenated_string_repeat1] = STATE(1019), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DASH_GT] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(82), }, [1020] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2361), - [anon_sym_STAR_EQ] = ACTIONS(2363), - [anon_sym_SLASH_EQ] = ACTIONS(2363), - [anon_sym_PERCENT_EQ] = ACTIONS(2363), - [anon_sym_PLUS_EQ] = ACTIONS(2363), - [anon_sym_DASH_EQ] = ACTIONS(2363), - [anon_sym_LT_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_GT_EQ] = ACTIONS(2363), - [anon_sym_AMP_EQ] = ACTIONS(2363), - [anon_sym_CARET_EQ] = ACTIONS(2363), - [anon_sym_PIPE_EQ] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(2356), + [anon_sym_QMARK] = ACTIONS(2358), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1021] = { - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [sym_comment] = ACTIONS(82), }, [1022] = { [sym_preproc_if_in_field_declaration_list] = STATE(1022), @@ -42818,33 +50941,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1022), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1855), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1849), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_auto] = ACTIONS(1852), - [anon_sym_register] = ACTIONS(1852), - [anon_sym_inline] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_restrict] = ACTIONS(1857), - [anon_sym_volatile] = ACTIONS(1857), - [anon_sym__Atomic] = ACTIONS(1857), - [anon_sym_signed] = ACTIONS(1860), - [anon_sym_unsigned] = ACTIONS(1860), - [anon_sym_long] = ACTIONS(1860), - [anon_sym_short] = ACTIONS(1860), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1875), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1843), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1846), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1846), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_auto] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1849), + [anon_sym_inline] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_restrict] = ACTIONS(1854), + [anon_sym_volatile] = ACTIONS(1854), + [anon_sym__Atomic] = ACTIONS(1854), + [anon_sym_signed] = ACTIONS(1857), + [anon_sym_unsigned] = ACTIONS(1857), + [anon_sym_long] = ACTIONS(1857), + [anon_sym_short] = ACTIONS(1857), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(1872), + [sym_comment] = ACTIONS(82), }, [1023] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3035), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3032), + [sym_comment] = ACTIONS(82), }, [1024] = { [sym_preproc_if_in_field_declaration_list] = STATE(898), @@ -42865,96 +50998,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(898), [aux_sym__declaration_specifiers_repeat1] = STATE(243), [aux_sym_sized_type_specifier_repeat1] = STATE(244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3035), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1816), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(107), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3032), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1815), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1817), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [sym_primitive_type] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [sym_identifier] = ACTIONS(108), + [sym_comment] = ACTIONS(82), }, [1025] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3037), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3039), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3039), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3039), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3039), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3039), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_auto] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [sym_identifier] = ACTIONS(3037), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3034), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3034), + [anon_sym_auto] = ACTIONS(3034), + [anon_sym_register] = ACTIONS(3034), + [anon_sym_inline] = ACTIONS(3034), + [anon_sym_const] = ACTIONS(3034), + [anon_sym_restrict] = ACTIONS(3034), + [anon_sym_volatile] = ACTIONS(3034), + [anon_sym__Atomic] = ACTIONS(3034), + [anon_sym_signed] = ACTIONS(3034), + [anon_sym_unsigned] = ACTIONS(3034), + [anon_sym_long] = ACTIONS(3034), + [anon_sym_short] = ACTIONS(3034), + [sym_primitive_type] = ACTIONS(3034), + [anon_sym_enum] = ACTIONS(3034), + [anon_sym_struct] = ACTIONS(3034), + [anon_sym_union] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3034), + [sym_comment] = ACTIONS(82), }, [1026] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3041), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3043), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3043), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3043), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3043), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3043), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_auto] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [sym_identifier] = ACTIONS(3041), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3038), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3038), + [anon_sym_auto] = ACTIONS(3038), + [anon_sym_register] = ACTIONS(3038), + [anon_sym_inline] = ACTIONS(3038), + [anon_sym_const] = ACTIONS(3038), + [anon_sym_restrict] = ACTIONS(3038), + [anon_sym_volatile] = ACTIONS(3038), + [anon_sym__Atomic] = ACTIONS(3038), + [anon_sym_signed] = ACTIONS(3038), + [anon_sym_unsigned] = ACTIONS(3038), + [anon_sym_long] = ACTIONS(3038), + [anon_sym_short] = ACTIONS(3038), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_union] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3038), + [sym_comment] = ACTIONS(82), }, [1027] = { - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3045), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_COLON] = ACTIONS(3042), + [sym_comment] = ACTIONS(82), }, [1028] = { [sym__expression] = STATE(75), @@ -42977,94 +51120,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(75), [sym_concatenated_string] = STATE(75), [sym_string_literal] = STATE(317), - [anon_sym_LPAREN2] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_sizeof] = ACTIONS(679), - [sym_number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_identifier] = ACTIONS(147), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_sizeof] = ACTIONS(680), + [sym_number_literal] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_null] = ACTIONS(148), + [sym_identifier] = ACTIONS(148), + [sym_comment] = ACTIONS(82), }, [1029] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1030] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3049), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3051), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3051), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3051), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3051), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3051), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_auto] = ACTIONS(3049), - [anon_sym_register] = ACTIONS(3049), - [anon_sym_inline] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_restrict] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym__Atomic] = ACTIONS(3049), - [anon_sym_signed] = ACTIONS(3049), - [anon_sym_unsigned] = ACTIONS(3049), - [anon_sym_long] = ACTIONS(3049), - [anon_sym_short] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3049), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3048), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3048), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3048), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3048), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_auto] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3046), + [sym_comment] = ACTIONS(82), }, [1031] = { [sym_compound_statement] = STATE(936), @@ -43100,78 +51270,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [1032] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1104), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1033] = { [sym__expression] = STATE(1105), @@ -43194,66 +51383,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1105), [sym_concatenated_string] = STATE(1105), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_null] = ACTIONS(3057), - [sym_identifier] = ACTIONS(3057), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_null] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3054), + [sym_comment] = ACTIONS(82), }, [1034] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1035] = { [sym_compound_statement] = STATE(1107), @@ -43289,35 +51505,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1036] = { [sym_compound_statement] = STATE(257), @@ -43353,35 +51588,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1037] = { [sym_declaration] = STATE(1108), @@ -43416,42 +51670,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_null] = ACTIONS(3065), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_null] = ACTIONS(3062), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [1038] = { [sym_compound_statement] = STATE(291), @@ -43487,35 +51751,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1039] = { [sym_compound_statement] = STATE(723), @@ -43551,35 +51834,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [1040] = { [sym_declaration] = STATE(1045), @@ -43629,56 +51931,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), [aux_sym_case_statement_repeat1] = STATE(1045), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(3069), - [anon_sym_default] = ACTIONS(3069), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2472), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(20), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(3064), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(3066), + [anon_sym_default] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2469), + [sym_comment] = ACTIONS(82), }, [1041] = { [sym_compound_statement] = STATE(1114), @@ -43714,35 +52016,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1042] = { [sym_compound_statement] = STATE(257), @@ -43778,35 +52099,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1043] = { [sym_declaration] = STATE(1116), @@ -43841,42 +52181,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3083), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_null] = ACTIONS(3085), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_null] = ACTIONS(3082), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [1044] = { [sym_compound_statement] = STATE(291), @@ -43912,35 +52262,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1045] = { [sym_declaration] = STATE(1045), @@ -43990,56 +52359,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), [aux_sym_case_statement_repeat1] = STATE(1045), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_auto] = ACTIONS(3093), - [anon_sym_register] = ACTIONS(3093), - [anon_sym_inline] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_restrict] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym__Atomic] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3110), - [anon_sym_unsigned] = ACTIONS(3110), - [anon_sym_long] = ACTIONS(3110), - [anon_sym_short] = ACTIONS(3110), - [sym_primitive_type] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_sizeof] = ACTIONS(3166), - [sym_number_literal] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3181), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_auto] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_restrict] = ACTIONS(3104), + [anon_sym_volatile] = ACTIONS(3104), + [anon_sym__Atomic] = ACTIONS(3104), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_sizeof] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3172), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3178), + [sym_comment] = ACTIONS(82), }, [1046] = { [sym__expression] = STATE(1119), @@ -44062,66 +52431,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1119), [sym_concatenated_string] = STATE(1119), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_identifier] = ACTIONS(3188), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_null] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3185), + [sym_comment] = ACTIONS(82), }, [1047] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1048] = { [sym__expression] = STATE(1121), @@ -44144,25 +52540,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1121), [sym_concatenated_string] = STATE(1121), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3194), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3191), + [sym_comment] = ACTIONS(82), }, [1049] = { [sym_compound_statement] = STATE(723), @@ -44198,35 +52621,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [1050] = { [sym__expression] = STATE(1123), @@ -44249,66 +52691,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1123), [sym_concatenated_string] = STATE(1123), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3196), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_identifier] = ACTIONS(3200), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3197), + [sym_comment] = ACTIONS(82), }, [1051] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1052] = { [sym__expression] = STATE(1125), @@ -44331,25 +52800,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1125), [sym_concatenated_string] = STATE(1125), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_identifier] = ACTIONS(3206), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [sym_null] = ACTIONS(3203), + [sym_identifier] = ACTIONS(3203), + [sym_comment] = ACTIONS(82), }, [1053] = { [sym_compound_statement] = STATE(1057), @@ -44385,84 +52881,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [1054] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3208), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3205), + [sym_comment] = ACTIONS(82), }, [1055] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1127), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1056] = { [sym__expression] = STATE(1128), @@ -44485,85 +53000,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1128), [sym_concatenated_string] = STATE(1128), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_identifier] = ACTIONS(3212), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3209), + [sym_false] = ACTIONS(3209), + [sym_null] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3209), + [sym_comment] = ACTIONS(82), }, [1057] = { - [ts_builtin_sym_end] = ACTIONS(3214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3216), - [sym_preproc_directive] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_typedef] = ACTIONS(3216), - [anon_sym_extern] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_LPAREN2] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_auto] = ACTIONS(3216), - [anon_sym_register] = ACTIONS(3216), - [anon_sym_inline] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_restrict] = ACTIONS(3216), - [anon_sym_volatile] = ACTIONS(3216), - [anon_sym__Atomic] = ACTIONS(3216), - [anon_sym_signed] = ACTIONS(3216), - [anon_sym_unsigned] = ACTIONS(3216), - [anon_sym_long] = ACTIONS(3216), - [anon_sym_short] = ACTIONS(3216), - [sym_primitive_type] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [anon_sym_struct] = ACTIONS(3216), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_goto] = ACTIONS(3216), - [anon_sym_AMP] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_sizeof] = ACTIONS(3216), - [sym_number_literal] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_identifier] = ACTIONS(3216), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(3211), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_auto] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3213), + [sym_comment] = ACTIONS(82), }, [1058] = { [sym_compound_statement] = STATE(1129), @@ -44599,503 +53141,522 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [1059] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3218), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3215), + [sym_comment] = ACTIONS(82), }, [1060] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1131), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3218), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1061] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_RBRACK] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_STAR_EQ] = ACTIONS(1406), + [anon_sym_SLASH_EQ] = ACTIONS(1406), + [anon_sym_PERCENT_EQ] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1406), + [anon_sym_DASH_EQ] = ACTIONS(1406), + [anon_sym_LT_LT_EQ] = ACTIONS(1406), + [anon_sym_GT_GT_EQ] = ACTIONS(1406), + [anon_sym_AMP_EQ] = ACTIONS(1406), + [anon_sym_CARET_EQ] = ACTIONS(1406), + [anon_sym_PIPE_EQ] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1062] = { [sym_argument_list] = STATE(142), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(1443), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_COLON] = ACTIONS(2611), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1063] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2094), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2094), - [sym_preproc_directive] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_auto] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_restrict] = ACTIONS(2094), - [anon_sym_volatile] = ACTIONS(2094), - [anon_sym__Atomic] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(2094), - [anon_sym_unsigned] = ACTIONS(2094), - [anon_sym_long] = ACTIONS(2094), - [anon_sym_short] = ACTIONS(2094), - [sym_primitive_type] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = 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(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2094), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2091), + [sym_preproc_directive] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LPAREN2] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_auto] = ACTIONS(2091), + [anon_sym_register] = ACTIONS(2091), + [anon_sym_inline] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_restrict] = ACTIONS(2091), + [anon_sym_volatile] = ACTIONS(2091), + [anon_sym__Atomic] = ACTIONS(2091), + [anon_sym_signed] = ACTIONS(2091), + [anon_sym_unsigned] = ACTIONS(2091), + [anon_sym_long] = ACTIONS(2091), + [anon_sym_short] = ACTIONS(2091), + [sym_primitive_type] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_do] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_goto] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2091), + [sym_number_literal] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym_true] = ACTIONS(2091), + [sym_false] = ACTIONS(2091), + [sym_null] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2091), + [sym_comment] = ACTIONS(82), }, [1064] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2251), - [sym_preproc_directive] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_typedef] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_LPAREN2] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_auto] = ACTIONS(2251), - [anon_sym_register] = ACTIONS(2251), - [anon_sym_inline] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_restrict] = ACTIONS(2251), - [anon_sym_volatile] = ACTIONS(2251), - [anon_sym__Atomic] = ACTIONS(2251), - [anon_sym_signed] = ACTIONS(2251), - [anon_sym_unsigned] = ACTIONS(2251), - [anon_sym_long] = ACTIONS(2251), - [anon_sym_short] = ACTIONS(2251), - [sym_primitive_type] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_goto] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_sizeof] = ACTIONS(2251), - [sym_number_literal] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2251), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2248), + [sym_preproc_directive] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_typedef] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_auto] = ACTIONS(2248), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_inline] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_restrict] = ACTIONS(2248), + [anon_sym_volatile] = ACTIONS(2248), + [anon_sym__Atomic] = ACTIONS(2248), + [anon_sym_signed] = ACTIONS(2248), + [anon_sym_unsigned] = ACTIONS(2248), + [anon_sym_long] = ACTIONS(2248), + [anon_sym_short] = ACTIONS(2248), + [sym_primitive_type] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2248), + [anon_sym_union] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_switch] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_goto] = ACTIONS(2248), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_sizeof] = ACTIONS(2248), + [sym_number_literal] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [sym_null] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2248), + [sym_comment] = ACTIONS(82), }, [1065] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2255), - [sym_preproc_directive] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_typedef] = ACTIONS(2255), - [anon_sym_extern] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_auto] = ACTIONS(2255), - [anon_sym_register] = ACTIONS(2255), - [anon_sym_inline] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_restrict] = ACTIONS(2255), - [anon_sym_volatile] = ACTIONS(2255), - [anon_sym__Atomic] = ACTIONS(2255), - [anon_sym_signed] = ACTIONS(2255), - [anon_sym_unsigned] = ACTIONS(2255), - [anon_sym_long] = ACTIONS(2255), - [anon_sym_short] = ACTIONS(2255), - [sym_primitive_type] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_goto] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_sizeof] = ACTIONS(2255), - [sym_number_literal] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_null] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2255), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2252), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2252), + [sym_preproc_directive] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_typedef] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_auto] = ACTIONS(2252), + [anon_sym_register] = ACTIONS(2252), + [anon_sym_inline] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_restrict] = ACTIONS(2252), + [anon_sym_volatile] = ACTIONS(2252), + [anon_sym__Atomic] = ACTIONS(2252), + [anon_sym_signed] = ACTIONS(2252), + [anon_sym_unsigned] = ACTIONS(2252), + [anon_sym_long] = ACTIONS(2252), + [anon_sym_short] = ACTIONS(2252), + [sym_primitive_type] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_switch] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_goto] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym_true] = ACTIONS(2252), + [sym_false] = ACTIONS(2252), + [sym_null] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2252), + [sym_comment] = ACTIONS(82), }, [1066] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2273), - [sym_preproc_directive] = ACTIONS(2273), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_typedef] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_LPAREN2] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_auto] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_inline] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_restrict] = ACTIONS(2273), - [anon_sym_volatile] = ACTIONS(2273), - [anon_sym__Atomic] = ACTIONS(2273), - [anon_sym_signed] = ACTIONS(2273), - [anon_sym_unsigned] = ACTIONS(2273), - [anon_sym_long] = ACTIONS(2273), - [anon_sym_short] = ACTIONS(2273), - [sym_primitive_type] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2271), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_sizeof] = ACTIONS(2273), - [sym_number_literal] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_null] = ACTIONS(2273), - [sym_identifier] = ACTIONS(2273), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2270), + [sym_preproc_directive] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_typedef] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_auto] = ACTIONS(2270), + [anon_sym_register] = ACTIONS(2270), + [anon_sym_inline] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_signed] = ACTIONS(2270), + [anon_sym_unsigned] = ACTIONS(2270), + [anon_sym_long] = ACTIONS(2270), + [anon_sym_short] = ACTIONS(2270), + [sym_primitive_type] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_switch] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_do] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_goto] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2268), + [anon_sym_sizeof] = ACTIONS(2270), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_true] = ACTIONS(2270), + [sym_false] = ACTIONS(2270), + [sym_null] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2270), + [sym_comment] = ACTIONS(82), }, [1067] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2277), - [sym_preproc_directive] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_typedef] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_LPAREN2] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_auto] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_inline] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_restrict] = ACTIONS(2277), - [anon_sym_volatile] = ACTIONS(2277), - [anon_sym__Atomic] = ACTIONS(2277), - [anon_sym_signed] = ACTIONS(2277), - [anon_sym_unsigned] = ACTIONS(2277), - [anon_sym_long] = ACTIONS(2277), - [anon_sym_short] = ACTIONS(2277), - [sym_primitive_type] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_goto] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_sizeof] = ACTIONS(2277), - [sym_number_literal] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym_true] = ACTIONS(2277), - [sym_false] = ACTIONS(2277), - [sym_null] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2277), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2274), + [sym_preproc_directive] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_auto] = ACTIONS(2274), + [anon_sym_register] = ACTIONS(2274), + [anon_sym_inline] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_restrict] = ACTIONS(2274), + [anon_sym_volatile] = ACTIONS(2274), + [anon_sym__Atomic] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2274), + [anon_sym_unsigned] = ACTIONS(2274), + [anon_sym_long] = ACTIONS(2274), + [anon_sym_short] = ACTIONS(2274), + [sym_primitive_type] = ACTIONS(2274), + [anon_sym_enum] = ACTIONS(2274), + [anon_sym_struct] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_switch] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_do] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_sizeof] = ACTIONS(2274), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [sym_null] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2274), + [sym_comment] = ACTIONS(82), }, [1068] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1215), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [1069] = { [sym__expression] = STATE(1134), @@ -45118,226 +53679,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1134), [sym_concatenated_string] = STATE(1134), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_identifier] = ACTIONS(3226), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3223), + [sym_comment] = ACTIONS(82), }, [1070] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1071] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2450), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2450), - [sym_preproc_directive] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_typedef] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_LPAREN2] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_auto] = ACTIONS(2450), - [anon_sym_register] = ACTIONS(2450), - [anon_sym_inline] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_restrict] = ACTIONS(2450), - [anon_sym_volatile] = ACTIONS(2450), - [anon_sym__Atomic] = ACTIONS(2450), - [anon_sym_signed] = ACTIONS(2450), - [anon_sym_unsigned] = ACTIONS(2450), - [anon_sym_long] = ACTIONS(2450), - [anon_sym_short] = ACTIONS(2450), - [sym_primitive_type] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_do] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_goto] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_TILDE] = ACTIONS(2448), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2448), - [anon_sym_PLUS_PLUS] = ACTIONS(2448), - [anon_sym_sizeof] = ACTIONS(2450), - [sym_number_literal] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(2448), - [sym_true] = ACTIONS(2450), - [sym_false] = ACTIONS(2450), - [sym_null] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2450), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2447), + [sym_preproc_directive] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_typedef] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_LPAREN2] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2447), + [anon_sym_auto] = ACTIONS(2447), + [anon_sym_register] = ACTIONS(2447), + [anon_sym_inline] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [anon_sym_restrict] = ACTIONS(2447), + [anon_sym_volatile] = ACTIONS(2447), + [anon_sym__Atomic] = ACTIONS(2447), + [anon_sym_signed] = ACTIONS(2447), + [anon_sym_unsigned] = ACTIONS(2447), + [anon_sym_long] = ACTIONS(2447), + [anon_sym_short] = ACTIONS(2447), + [sym_primitive_type] = ACTIONS(2447), + [anon_sym_enum] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2447), + [anon_sym_union] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_switch] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_do] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_goto] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2447), + [sym_number_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym_true] = ACTIONS(2447), + [sym_false] = ACTIONS(2447), + [sym_null] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2447), + [sym_comment] = ACTIONS(82), }, [1072] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2482), - [sym_preproc_directive] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_auto] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_switch] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2482), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2482), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2479), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_auto] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2479), + [sym_comment] = ACTIONS(82), }, [1073] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(3230), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(3227), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1074] = { - [anon_sym_RPAREN] = ACTIONS(3230), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3227), + [sym_comment] = ACTIONS(82), }, [1075] = { [sym_compound_statement] = STATE(1137), @@ -45373,78 +53961,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [1076] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1139), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3232), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1077] = { [sym__expression] = STATE(1140), @@ -45467,66 +54074,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1140), [sym_concatenated_string] = STATE(1140), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3232), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_identifier] = ACTIONS(3236), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3233), + [sym_comment] = ACTIONS(82), }, [1078] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1079] = { [sym_compound_statement] = STATE(980), @@ -45562,35 +54196,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [1080] = { [sym__expression] = STATE(1143), @@ -45613,66 +54266,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1143), [sym_concatenated_string] = STATE(1143), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3244), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3241), + [sym_comment] = ACTIONS(82), }, [1081] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1082] = { [sym__expression] = STATE(1145), @@ -45695,143 +54375,170 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1145), [sym_concatenated_string] = STATE(1145), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_identifier] = ACTIONS(3250), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3247), + [sym_comment] = ACTIONS(82), }, [1083] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1105), - [sym_preproc_directive] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_typedef] = ACTIONS(1105), - [anon_sym_extern] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_LPAREN2] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_auto] = ACTIONS(1105), - [anon_sym_register] = ACTIONS(1105), - [anon_sym_inline] = ACTIONS(1105), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_restrict] = ACTIONS(1105), - [anon_sym_volatile] = ACTIONS(1105), - [anon_sym__Atomic] = ACTIONS(1105), - [anon_sym_signed] = ACTIONS(1105), - [anon_sym_unsigned] = ACTIONS(1105), - [anon_sym_long] = ACTIONS(1105), - [anon_sym_short] = ACTIONS(1105), - [sym_primitive_type] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1105), - [anon_sym_union] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_goto] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_sizeof] = ACTIONS(1105), - [sym_number_literal] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_null] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1104), + [sym_comment] = ACTIONS(82), }, [1084] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_auto] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_signed] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_sizeof] = ACTIONS(2914), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2914), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_auto] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_else] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2911), + [sym_comment] = ACTIONS(82), }, [1085] = { [sym_compound_statement] = STATE(1146), @@ -45867,84 +54574,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [1086] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(82), }, [1087] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1148), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1088] = { [sym__expression] = STATE(1149), @@ -45967,25 +54693,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1149), [sym_concatenated_string] = STATE(1149), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3256), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3249), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3251), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_null] = ACTIONS(3253), + [sym_identifier] = ACTIONS(3253), + [sym_comment] = ACTIONS(82), }, [1089] = { [sym_compound_statement] = STATE(936), @@ -46021,78 +54774,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [1090] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1151), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3255), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1091] = { [sym__expression] = STATE(1152), @@ -46115,66 +54887,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1152), [sym_concatenated_string] = STATE(1152), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3260), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3262), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3255), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_null] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3259), + [sym_comment] = ACTIONS(82), }, [1092] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1093] = { [sym_compound_statement] = STATE(1129), @@ -46210,98 +55009,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [1094] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3266), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3263), + [sym_comment] = ACTIONS(82), }, [1095] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1155), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3266), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3263), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1096] = { [sym_type_qualifier] = STATE(1096), [aux_sym_type_definition_repeat1] = STATE(1096), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_restrict] = ACTIONS(1021), - [anon_sym_volatile] = ACTIONS(1021), - [anon_sym__Atomic] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1024), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1023), + [sym_comment] = ACTIONS(82), }, [1097] = { [sym__expression] = STATE(452), @@ -46325,56 +55143,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(452), [sym_concatenated_string] = STATE(452), [sym_string_literal] = STATE(692), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_PERCENT_EQ] = ACTIONS(1937), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_LT_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_GT_EQ] = ACTIONS(1937), - [anon_sym_AMP_EQ] = ACTIONS(1937), - [anon_sym_CARET_EQ] = ACTIONS(1937), - [anon_sym_PIPE_EQ] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(1937), - [anon_sym_AMP_AMP] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1937), - [anon_sym_BANG_EQ] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1941), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_DASH_GT] = ACTIONS(1937), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1155), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1934), + [anon_sym_STAR_EQ] = ACTIONS(1934), + [anon_sym_SLASH_EQ] = ACTIONS(1934), + [anon_sym_PERCENT_EQ] = ACTIONS(1934), + [anon_sym_PLUS_EQ] = ACTIONS(1934), + [anon_sym_DASH_EQ] = ACTIONS(1934), + [anon_sym_LT_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_GT_EQ] = ACTIONS(1934), + [anon_sym_AMP_EQ] = ACTIONS(1934), + [anon_sym_CARET_EQ] = ACTIONS(1934), + [anon_sym_PIPE_EQ] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1934), + [anon_sym_DASH_GT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(82), }, [1098] = { [sym__expression] = STATE(1156), @@ -46397,69 +55242,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1156), [sym_concatenated_string] = STATE(1156), [sym_string_literal] = STATE(692), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [sym_number_literal] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_identifier] = ACTIONS(3274), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [sym_number_literal] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_identifier] = ACTIONS(3271), + [sym_comment] = ACTIONS(82), }, [1099] = { - [anon_sym_COMMA] = ACTIONS(3276), - [anon_sym_RPAREN] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_RBRACK] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_STAR_EQ] = ACTIONS(3276), - [anon_sym_SLASH_EQ] = ACTIONS(3276), - [anon_sym_PERCENT_EQ] = ACTIONS(3276), - [anon_sym_PLUS_EQ] = ACTIONS(3276), - [anon_sym_DASH_EQ] = ACTIONS(3276), - [anon_sym_LT_LT_EQ] = ACTIONS(3276), - [anon_sym_GT_GT_EQ] = ACTIONS(3276), - [anon_sym_AMP_EQ] = ACTIONS(3276), - [anon_sym_CARET_EQ] = ACTIONS(3276), - [anon_sym_PIPE_EQ] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_PIPE] = ACTIONS(3278), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_LT_EQ] = ACTIONS(3276), - [anon_sym_GT_EQ] = ACTIONS(3276), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3276), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_RPAREN] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_LPAREN2] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_RBRACK] = ACTIONS(3273), + [anon_sym_EQ] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3273), + [anon_sym_AMP_AMP] = ACTIONS(3273), + [anon_sym_PIPE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_EQ] = ACTIONS(3273), + [anon_sym_LT_LT] = ACTIONS(3275), + [anon_sym_GT_GT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DOT] = ACTIONS(3273), + [anon_sym_DASH_GT] = ACTIONS(3273), + [sym_comment] = ACTIONS(82), }, [1100] = { [sym__expression] = STATE(1004), @@ -46487,40 +55359,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(1004), [sym_string_literal] = STATE(692), [aux_sym_initializer_pair_repeat1] = STATE(693), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [sym_null] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2755), - [sym_comment] = ACTIONS(81), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1785), + [sym_number_literal] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [sym_null] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2752), + [sym_comment] = ACTIONS(82), }, [1101] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3280), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3277), + [sym_comment] = ACTIONS(82), }, [1102] = { - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_RPAREN] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3282), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RPAREN] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_LPAREN2] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_COLON] = ACTIONS(3279), + [sym_comment] = ACTIONS(82), }, [1103] = { [sym_compound_statement] = STATE(1057), @@ -46556,84 +55455,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [1104] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3284), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_comment] = ACTIONS(82), }, [1105] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1158), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1106] = { [sym__expression] = STATE(1159), @@ -46656,60 +55574,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1159), [sym_concatenated_string] = STATE(1159), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_identifier] = ACTIONS(3288), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3285), + [sym_comment] = ACTIONS(82), }, [1107] = { - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [1108] = { [sym__expression] = STATE(1162), @@ -46732,217 +55677,244 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1162), [sym_concatenated_string] = STATE(1162), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_identifier] = ACTIONS(3296), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3293), + [sym_comment] = ACTIONS(82), }, [1109] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1110] = { [sym_parenthesized_expression] = STATE(1164), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [1111] = { [sym_parenthesized_expression] = STATE(1165), - [anon_sym_LPAREN2] = ACTIONS(165), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(166), + [sym_comment] = ACTIONS(82), }, [1112] = { - [anon_sym_LPAREN2] = ACTIONS(3300), - [sym_comment] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(3297), + [sym_comment] = ACTIONS(82), }, [1113] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(3302), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [1114] = { - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [1115] = { - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(233), - [anon_sym_PERCENT_EQ] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_LT_LT_EQ] = ACTIONS(233), - [anon_sym_GT_GT_EQ] = ACTIONS(233), - [anon_sym_AMP_EQ] = ACTIONS(233), - [anon_sym_CARET_EQ] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN2] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_QMARK] = ACTIONS(234), + [anon_sym_STAR_EQ] = ACTIONS(234), + [anon_sym_SLASH_EQ] = ACTIONS(234), + [anon_sym_PERCENT_EQ] = ACTIONS(234), + [anon_sym_PLUS_EQ] = ACTIONS(234), + [anon_sym_DASH_EQ] = ACTIONS(234), + [anon_sym_LT_LT_EQ] = ACTIONS(234), + [anon_sym_GT_GT_EQ] = ACTIONS(234), + [anon_sym_AMP_EQ] = ACTIONS(234), + [anon_sym_CARET_EQ] = ACTIONS(234), + [anon_sym_PIPE_EQ] = ACTIONS(234), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(234), + [anon_sym_AMP_AMP] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(234), + [anon_sym_BANG_EQ] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(234), + [anon_sym_LT_LT] = ACTIONS(248), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_DASH_DASH] = ACTIONS(234), + [anon_sym_PLUS_PLUS] = ACTIONS(234), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DASH_GT] = ACTIONS(234), + [sym_comment] = ACTIONS(82), }, [1116] = { [sym__expression] = STATE(1170), @@ -46965,66 +55937,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1170), [sym_concatenated_string] = STATE(1170), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [sym_null] = ACTIONS(3310), - [sym_identifier] = ACTIONS(3310), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3307), + [sym_comment] = ACTIONS(82), }, [1117] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1118] = { [sym_compound_statement] = STATE(936), @@ -47060,78 +56059,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [1119] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1173), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3314), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3311), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1120] = { [sym__expression] = STATE(1174), @@ -47154,66 +56172,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1174), [sym_concatenated_string] = STATE(1174), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3314), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [sym_null] = ACTIONS(3318), - [sym_identifier] = ACTIONS(3318), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3311), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3313), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3315), + [sym_comment] = ACTIONS(82), }, [1121] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1122] = { [sym_compound_statement] = STATE(936), @@ -47249,78 +56294,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [1123] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1177), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3322), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3319), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1124] = { [sym__expression] = STATE(1178), @@ -47343,66 +56407,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1178), [sym_concatenated_string] = STATE(1178), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3322), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3326), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3319), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_identifier] = ACTIONS(3323), + [sym_comment] = ACTIONS(82), }, [1125] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1126] = { [sym_compound_statement] = STATE(1129), @@ -47438,144 +56529,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [1127] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3330), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3327), + [sym_comment] = ACTIONS(82), }, [1128] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1181), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3330), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3327), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1129] = { - [ts_builtin_sym_end] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3334), - [sym_preproc_directive] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3334), - [anon_sym_extern] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_auto] = ACTIONS(3334), - [anon_sym_register] = ACTIONS(3334), - [anon_sym_inline] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_restrict] = ACTIONS(3334), - [anon_sym_volatile] = ACTIONS(3334), - [anon_sym__Atomic] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3334), - [anon_sym_unsigned] = ACTIONS(3334), - [anon_sym_long] = ACTIONS(3334), - [anon_sym_short] = ACTIONS(3334), - [sym_primitive_type] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3334), - [anon_sym_union] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_else] = 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(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_sizeof] = ACTIONS(3334), - [sym_number_literal] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(3329), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3331), + [sym_preproc_directive] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_auto] = ACTIONS(3331), + [anon_sym_register] = ACTIONS(3331), + [anon_sym_inline] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_restrict] = ACTIONS(3331), + [anon_sym_volatile] = ACTIONS(3331), + [anon_sym__Atomic] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3331), + [anon_sym_unsigned] = ACTIONS(3331), + [anon_sym_long] = ACTIONS(3331), + [anon_sym_short] = ACTIONS(3331), + [sym_primitive_type] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3331), + [anon_sym_union] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_case] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_goto] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_sizeof] = ACTIONS(3331), + [sym_number_literal] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3331), + [sym_comment] = ACTIONS(82), }, [1130] = { [sym_compound_statement] = STATE(1182), @@ -47611,41 +56721,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [1131] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3336), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3333), + [sym_comment] = ACTIONS(82), }, [1132] = { [sym_compound_statement] = STATE(1071), @@ -47681,35 +56810,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [1133] = { [sym__expression] = STATE(1185), @@ -47732,66 +56880,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1185), [sym_concatenated_string] = STATE(1185), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3338), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_identifier] = ACTIONS(3342), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3335), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3339), + [sym_false] = ACTIONS(3339), + [sym_null] = ACTIONS(3339), + [sym_identifier] = ACTIONS(3339), + [sym_comment] = ACTIONS(82), }, [1134] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1135] = { [sym__expression] = STATE(1187), @@ -47814,139 +56989,166 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1187), [sym_concatenated_string] = STATE(1187), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3345), + [sym_comment] = ACTIONS(82), }, [1136] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1105), - [sym_preproc_directive] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_typedef] = ACTIONS(1105), - [anon_sym_extern] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_LPAREN2] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_auto] = ACTIONS(1105), - [anon_sym_register] = ACTIONS(1105), - [anon_sym_inline] = ACTIONS(1105), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_restrict] = ACTIONS(1105), - [anon_sym_volatile] = ACTIONS(1105), - [anon_sym__Atomic] = ACTIONS(1105), - [anon_sym_signed] = ACTIONS(1105), - [anon_sym_unsigned] = ACTIONS(1105), - [anon_sym_long] = ACTIONS(1105), - [anon_sym_short] = ACTIONS(1105), - [sym_primitive_type] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1105), - [anon_sym_union] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_goto] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_sizeof] = ACTIONS(1105), - [sym_number_literal] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_null] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1104), + [sym_comment] = ACTIONS(82), }, [1137] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_auto] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_signed] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_sizeof] = ACTIONS(2914), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2914), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_auto] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_else] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2911), + [sym_comment] = ACTIONS(82), }, [1138] = { [sym_compound_statement] = STATE(1188), @@ -47982,84 +57184,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [1139] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3350), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3347), + [sym_comment] = ACTIONS(82), }, [1140] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1190), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1141] = { [sym__expression] = STATE(1191), @@ -48082,25 +57303,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1191), [sym_concatenated_string] = STATE(1191), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3354), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_null] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3351), + [sym_comment] = ACTIONS(82), }, [1142] = { [sym_compound_statement] = STATE(1084), @@ -48136,78 +57384,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [1143] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1193), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1144] = { [sym__expression] = STATE(1194), @@ -48230,125 +57497,152 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1194), [sym_concatenated_string] = STATE(1194), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3360), - [sym_false] = ACTIONS(3360), - [sym_null] = ACTIONS(3360), - [sym_identifier] = ACTIONS(3360), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3357), + [sym_comment] = ACTIONS(82), }, [1145] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1146] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3216), - [sym_preproc_directive] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_typedef] = ACTIONS(3216), - [anon_sym_extern] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_LPAREN2] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_auto] = ACTIONS(3216), - [anon_sym_register] = ACTIONS(3216), - [anon_sym_inline] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_restrict] = ACTIONS(3216), - [anon_sym_volatile] = ACTIONS(3216), - [anon_sym__Atomic] = ACTIONS(3216), - [anon_sym_signed] = ACTIONS(3216), - [anon_sym_unsigned] = ACTIONS(3216), - [anon_sym_long] = ACTIONS(3216), - [anon_sym_short] = ACTIONS(3216), - [sym_primitive_type] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [anon_sym_struct] = ACTIONS(3216), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_goto] = ACTIONS(3216), - [anon_sym_AMP] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_sizeof] = ACTIONS(3216), - [sym_number_literal] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_identifier] = ACTIONS(3216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_auto] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3213), + [sym_comment] = ACTIONS(82), }, [1147] = { [sym_compound_statement] = STATE(1196), @@ -48384,84 +57678,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [1148] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3364), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3361), + [sym_comment] = ACTIONS(82), }, [1149] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1198), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1150] = { [sym_compound_statement] = STATE(1057), @@ -48497,84 +57810,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [1151] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3366), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3363), + [sym_comment] = ACTIONS(82), }, [1152] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1200), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3363), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1153] = { [sym__expression] = STATE(1201), @@ -48597,25 +57929,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1201), [sym_concatenated_string] = STATE(1201), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3370), - [sym_false] = ACTIONS(3370), - [sym_null] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3370), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3363), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3367), + [sym_comment] = ACTIONS(82), }, [1154] = { [sym_compound_statement] = STATE(1182), @@ -48651,83 +58010,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [1155] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3372), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3369), + [sym_comment] = ACTIONS(82), }, [1156] = { [sym_argument_list] = STATE(142), - [anon_sym_COMMA] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2361), - [anon_sym_STAR_EQ] = ACTIONS(2363), - [anon_sym_SLASH_EQ] = ACTIONS(2363), - [anon_sym_PERCENT_EQ] = ACTIONS(2363), - [anon_sym_PLUS_EQ] = ACTIONS(2363), - [anon_sym_DASH_EQ] = ACTIONS(2363), - [anon_sym_LT_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_GT_EQ] = ACTIONS(2363), - [anon_sym_AMP_EQ] = ACTIONS(2363), - [anon_sym_CARET_EQ] = ACTIONS(2363), - [anon_sym_PIPE_EQ] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_EQ_EQ] = ACTIONS(2375), - [anon_sym_BANG_EQ] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2379), - [anon_sym_GT_EQ] = ACTIONS(2379), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(2356), + [anon_sym_QMARK] = ACTIONS(2358), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2354), + [anon_sym_PERCENT] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1157] = { [sym_compound_statement] = STATE(1129), @@ -48763,84 +58141,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [1158] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3374), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3371), + [sym_comment] = ACTIONS(82), }, [1159] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1204), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3374), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1160] = { [sym_compound_statement] = STATE(723), @@ -48876,35 +58273,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1161] = { [sym__expression] = STATE(1206), @@ -48927,66 +58343,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1206), [sym_concatenated_string] = STATE(1206), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_identifier] = ACTIONS(3380), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3377), + [sym_comment] = ACTIONS(82), }, [1162] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1163] = { [sym__expression] = STATE(1208), @@ -49009,25 +58452,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1208), [sym_concatenated_string] = STATE(1208), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3384), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3386), - [sym_false] = ACTIONS(3386), - [sym_null] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3386), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3383), + [sym_comment] = ACTIONS(82), }, [1164] = { [sym_compound_statement] = STATE(1209), @@ -49063,35 +58533,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1165] = { [sym_compound_statement] = STATE(257), @@ -49127,35 +58616,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1166] = { [sym_declaration] = STATE(1210), @@ -49190,42 +58698,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(197), [aux_sym__declaration_specifiers_repeat1] = STATE(198), [aux_sym_sized_type_specifier_repeat1] = STATE(199), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_null] = ACTIONS(3392), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(30), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(30), + [anon_sym_auto] = ACTIONS(30), + [anon_sym_register] = ACTIONS(30), + [anon_sym_inline] = ACTIONS(30), + [anon_sym_const] = ACTIONS(32), + [anon_sym_restrict] = ACTIONS(32), + [anon_sym_volatile] = ACTIONS(32), + [anon_sym__Atomic] = ACTIONS(32), + [anon_sym_signed] = ACTIONS(408), + [anon_sym_unsigned] = ACTIONS(408), + [anon_sym_long] = ACTIONS(408), + [anon_sym_short] = ACTIONS(408), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(38), + [anon_sym_struct] = ACTIONS(40), + [anon_sym_union] = ACTIONS(42), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_identifier] = ACTIONS(548), + [sym_comment] = ACTIONS(82), }, [1167] = { [sym_compound_statement] = STATE(291), @@ -49261,35 +58779,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1168] = { [sym_compound_statement] = STATE(723), @@ -49325,35 +58862,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1169] = { [sym__expression] = STATE(1213), @@ -49376,66 +58932,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1213), [sym_concatenated_string] = STATE(1213), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3396), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3398), - [sym_false] = ACTIONS(3398), - [sym_null] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3398), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3391), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3395), + [sym_comment] = ACTIONS(82), }, [1170] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1171] = { [sym__expression] = STATE(1215), @@ -49458,25 +59041,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1215), [sym_concatenated_string] = STATE(1215), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [sym_null] = ACTIONS(3404), - [sym_identifier] = ACTIONS(3404), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3401), + [sym_comment] = ACTIONS(82), }, [1172] = { [sym_compound_statement] = STATE(1057), @@ -49512,84 +59122,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [1173] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3406), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3403), + [sym_comment] = ACTIONS(82), }, [1174] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1217), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1175] = { [sym__expression] = STATE(1218), @@ -49612,25 +59241,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1218), [sym_concatenated_string] = STATE(1218), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3406), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3408), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3410), - [sym_false] = ACTIONS(3410), - [sym_null] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3410), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3407), + [sym_comment] = ACTIONS(82), }, [1176] = { [sym_compound_statement] = STATE(1057), @@ -49666,84 +59322,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [1177] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3409), + [sym_comment] = ACTIONS(82), }, [1178] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1220), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1179] = { [sym__expression] = STATE(1221), @@ -49766,25 +59441,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1221), [sym_concatenated_string] = STATE(1221), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_null] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3416), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3413), + [sym_comment] = ACTIONS(82), }, [1180] = { [sym_compound_statement] = STATE(1182), @@ -49820,101 +59522,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [1181] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3418), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3415), + [sym_comment] = ACTIONS(82), }, [1182] = { - [ts_builtin_sym_end] = ACTIONS(3420), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_RBRACE] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_auto] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [sym_null] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3422), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(3417), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_auto] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3419), + [sym_comment] = ACTIONS(82), }, [1183] = { [sym_compound_statement] = STATE(1223), @@ -49950,35 +59671,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(533), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(44), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(48), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(52), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(534), + [sym_comment] = ACTIONS(82), }, [1184] = { [sym_compound_statement] = STATE(1137), @@ -50014,78 +59754,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [1185] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1225), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1186] = { [sym__expression] = STATE(1226), @@ -50108,123 +59867,150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1226), [sym_concatenated_string] = STATE(1226), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3426), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_null] = ACTIONS(3428), - [sym_identifier] = ACTIONS(3428), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3425), + [sym_comment] = ACTIONS(82), }, [1187] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1188] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3216), - [sym_preproc_directive] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_typedef] = ACTIONS(3216), - [anon_sym_extern] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_LPAREN2] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_auto] = ACTIONS(3216), - [anon_sym_register] = ACTIONS(3216), - [anon_sym_inline] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_restrict] = ACTIONS(3216), - [anon_sym_volatile] = ACTIONS(3216), - [anon_sym__Atomic] = ACTIONS(3216), - [anon_sym_signed] = ACTIONS(3216), - [anon_sym_unsigned] = ACTIONS(3216), - [anon_sym_long] = ACTIONS(3216), - [anon_sym_short] = ACTIONS(3216), - [sym_primitive_type] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [anon_sym_struct] = ACTIONS(3216), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_goto] = ACTIONS(3216), - [anon_sym_AMP] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_sizeof] = ACTIONS(3216), - [sym_number_literal] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_identifier] = ACTIONS(3216), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_auto] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_sizeof] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3213), + [sym_comment] = ACTIONS(82), }, [1189] = { [sym_compound_statement] = STATE(1228), @@ -50260,84 +60046,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [1190] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3432), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(82), }, [1191] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1230), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3432), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1192] = { [sym_compound_statement] = STATE(1146), @@ -50373,84 +60178,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [1193] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3434), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3431), + [sym_comment] = ACTIONS(82), }, [1194] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1232), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3434), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1195] = { [sym__expression] = STATE(1233), @@ -50473,84 +60297,111 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1233), [sym_concatenated_string] = STATE(1233), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3434), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3436), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3438), - [sym_false] = ACTIONS(3438), - [sym_null] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3438), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3433), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_null] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(82), }, [1196] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3334), - [sym_preproc_directive] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3334), - [anon_sym_extern] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_auto] = ACTIONS(3334), - [anon_sym_register] = ACTIONS(3334), - [anon_sym_inline] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_restrict] = ACTIONS(3334), - [anon_sym_volatile] = ACTIONS(3334), - [anon_sym__Atomic] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3334), - [anon_sym_unsigned] = ACTIONS(3334), - [anon_sym_long] = ACTIONS(3334), - [anon_sym_short] = ACTIONS(3334), - [sym_primitive_type] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3334), - [anon_sym_union] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_switch] = 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(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_sizeof] = ACTIONS(3334), - [sym_number_literal] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3331), + [sym_preproc_directive] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_auto] = ACTIONS(3331), + [anon_sym_register] = ACTIONS(3331), + [anon_sym_inline] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_restrict] = ACTIONS(3331), + [anon_sym_volatile] = ACTIONS(3331), + [anon_sym__Atomic] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3331), + [anon_sym_unsigned] = ACTIONS(3331), + [anon_sym_long] = ACTIONS(3331), + [anon_sym_short] = ACTIONS(3331), + [sym_primitive_type] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3331), + [anon_sym_union] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_goto] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_sizeof] = ACTIONS(3331), + [sym_number_literal] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3331), + [sym_comment] = ACTIONS(82), }, [1197] = { [sym_compound_statement] = STATE(1234), @@ -50586,41 +60437,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [1198] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3440), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3437), + [sym_comment] = ACTIONS(82), }, [1199] = { [sym_compound_statement] = STATE(1129), @@ -50656,84 +60526,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [1200] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3442), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3439), + [sym_comment] = ACTIONS(82), }, [1201] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1237), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3442), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1202] = { [sym_compound_statement] = STATE(1223), @@ -50769,35 +60658,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(115), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(117), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1047), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(114), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(116), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(118), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1046), + [sym_comment] = ACTIONS(82), }, [1203] = { [sym_compound_statement] = STATE(1182), @@ -50833,41 +60741,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [1204] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3444), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3441), + [sym_comment] = ACTIONS(82), }, [1205] = { [sym_compound_statement] = STATE(936), @@ -50903,78 +60830,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1206] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1240), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3446), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1207] = { [sym__expression] = STATE(1241), @@ -50997,119 +60943,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1241), [sym_concatenated_string] = STATE(1241), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3446), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3448), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3450), - [sym_false] = ACTIONS(3450), - [sym_null] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3450), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3443), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3447), + [sym_comment] = ACTIONS(82), }, [1208] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1209] = { - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1215), + [sym_comment] = ACTIONS(82), }, [1210] = { [sym__expression] = STATE(1245), @@ -51132,66 +61105,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1245), [sym_concatenated_string] = STATE(1245), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3458), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3460), - [sym_false] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3460), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [sym_null] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3457), + [sym_comment] = ACTIONS(82), }, [1211] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1212] = { [sym_compound_statement] = STATE(936), @@ -51227,78 +61227,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1213] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1248), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3464), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1214] = { [sym__expression] = STATE(1249), @@ -51321,66 +61340,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1249), [sym_concatenated_string] = STATE(1249), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3464), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3468), - [sym_false] = ACTIONS(3468), - [sym_null] = ACTIONS(3468), - [sym_identifier] = ACTIONS(3468), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3461), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3463), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3465), + [sym_false] = ACTIONS(3465), + [sym_null] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3465), + [sym_comment] = ACTIONS(82), }, [1215] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1216] = { [sym_compound_statement] = STATE(1129), @@ -51416,84 +61462,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [1217] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3472), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3469), + [sym_comment] = ACTIONS(82), }, [1218] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1252), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3472), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1219] = { [sym_compound_statement] = STATE(1129), @@ -51529,84 +61594,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [1220] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3474), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3471), + [sym_comment] = ACTIONS(82), }, [1221] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1254), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3471), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1222] = { [sym_compound_statement] = STATE(1223), @@ -51642,95 +61726,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(169), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(171), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(170), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(172), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(178), + [sym_comment] = ACTIONS(82), }, [1223] = { - [ts_builtin_sym_end] = ACTIONS(3476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3478), - [sym_preproc_directive] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_typedef] = ACTIONS(3478), - [anon_sym_extern] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_RBRACE] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_auto] = ACTIONS(3478), - [anon_sym_register] = ACTIONS(3478), - [anon_sym_inline] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_restrict] = ACTIONS(3478), - [anon_sym_volatile] = ACTIONS(3478), - [anon_sym__Atomic] = ACTIONS(3478), - [anon_sym_signed] = ACTIONS(3478), - [anon_sym_unsigned] = ACTIONS(3478), - [anon_sym_long] = ACTIONS(3478), - [anon_sym_short] = ACTIONS(3478), - [sym_primitive_type] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(3478), - [anon_sym_struct] = ACTIONS(3478), - [anon_sym_union] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_else] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_case] = ACTIONS(3478), - [anon_sym_default] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_goto] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_sizeof] = ACTIONS(3478), - [sym_number_literal] = ACTIONS(3476), - [anon_sym_SQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [sym_true] = ACTIONS(3478), - [sym_false] = ACTIONS(3478), - [sym_null] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3478), - [sym_comment] = ACTIONS(81), + [ts_builtin_sym_end] = ACTIONS(3473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3473), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_RBRACE] = ACTIONS(3473), + [anon_sym_LPAREN2] = ACTIONS(3473), + [anon_sym_STAR] = ACTIONS(3473), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_auto] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_case] = ACTIONS(3475), + [anon_sym_default] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3473), + [anon_sym_BANG] = ACTIONS(3473), + [anon_sym_TILDE] = ACTIONS(3473), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3473), + [anon_sym_PLUS_PLUS] = ACTIONS(3473), + [anon_sym_sizeof] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3473), + [anon_sym_SQUOTE] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3473), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [sym_null] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3475), + [sym_comment] = ACTIONS(82), }, [1224] = { [sym_compound_statement] = STATE(1188), @@ -51766,84 +61869,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [1225] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3480), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3477), + [sym_comment] = ACTIONS(82), }, [1226] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1256), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3477), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1227] = { [sym__expression] = STATE(1257), @@ -51866,82 +61988,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1257), [sym_concatenated_string] = STATE(1257), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3482), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3484), - [sym_false] = ACTIONS(3484), - [sym_null] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3484), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3477), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3479), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3481), + [sym_false] = ACTIONS(3481), + [sym_null] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3481), + [sym_comment] = ACTIONS(82), }, [1228] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3334), - [sym_preproc_directive] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3334), - [anon_sym_extern] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_auto] = ACTIONS(3334), - [anon_sym_register] = ACTIONS(3334), - [anon_sym_inline] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_restrict] = ACTIONS(3334), - [anon_sym_volatile] = ACTIONS(3334), - [anon_sym__Atomic] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3334), - [anon_sym_unsigned] = ACTIONS(3334), - [anon_sym_long] = ACTIONS(3334), - [anon_sym_short] = ACTIONS(3334), - [sym_primitive_type] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3334), - [anon_sym_union] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_switch] = 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(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_sizeof] = ACTIONS(3334), - [sym_number_literal] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3331), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3331), + [sym_preproc_directive] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_auto] = ACTIONS(3331), + [anon_sym_register] = ACTIONS(3331), + [anon_sym_inline] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_restrict] = ACTIONS(3331), + [anon_sym_volatile] = ACTIONS(3331), + [anon_sym__Atomic] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3331), + [anon_sym_unsigned] = ACTIONS(3331), + [anon_sym_long] = ACTIONS(3331), + [anon_sym_short] = ACTIONS(3331), + [sym_primitive_type] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3331), + [anon_sym_union] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_goto] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_sizeof] = ACTIONS(3331), + [sym_number_literal] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3331), + [sym_comment] = ACTIONS(82), }, [1229] = { [sym_compound_statement] = STATE(1258), @@ -51977,41 +62126,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [1230] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3486), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3483), + [sym_comment] = ACTIONS(82), }, [1231] = { [sym_compound_statement] = STATE(1196), @@ -52047,143 +62215,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [1232] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3488), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3485), + [sym_comment] = ACTIONS(82), }, [1233] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1261), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1234] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_auto] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [sym_null] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3422), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_auto] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3419), + [sym_comment] = ACTIONS(82), }, [1235] = { [sym_compound_statement] = STATE(1262), @@ -52219,35 +62406,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1592), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1591), + [sym_comment] = ACTIONS(82), }, [1236] = { [sym_compound_statement] = STATE(1182), @@ -52283,41 +62489,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [1237] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3490), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3487), + [sym_comment] = ACTIONS(82), }, [1238] = { [sym_compound_statement] = STATE(1223), @@ -52353,35 +62578,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(523), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(527), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(526), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(528), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(82), }, [1239] = { [sym_compound_statement] = STATE(1057), @@ -52417,84 +62661,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1240] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3492), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3489), + [sym_comment] = ACTIONS(82), }, [1241] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1265), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1242] = { [sym__expression] = STATE(1266), @@ -52517,25 +62780,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1266), [sym_concatenated_string] = STATE(1266), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3496), - [sym_false] = ACTIONS(3496), - [sym_null] = ACTIONS(3496), - [sym_identifier] = ACTIONS(3496), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3491), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3493), + [sym_false] = ACTIONS(3493), + [sym_null] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3493), + [sym_comment] = ACTIONS(82), }, [1243] = { [sym_compound_statement] = STATE(723), @@ -52571,35 +62861,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1244] = { [sym__expression] = STATE(1268), @@ -52622,66 +62931,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1268), [sym_concatenated_string] = STATE(1268), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3498), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3500), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3502), - [sym_false] = ACTIONS(3502), - [sym_null] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3502), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3495), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3497), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3499), + [sym_false] = ACTIONS(3499), + [sym_null] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3499), + [sym_comment] = ACTIONS(82), }, [1245] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1246] = { [sym__expression] = STATE(1270), @@ -52704,25 +63040,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1270), [sym_concatenated_string] = STATE(1270), [sym_string_literal] = STATE(104), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(183), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(193), - [anon_sym_PLUS_PLUS] = ACTIONS(193), - [anon_sym_sizeof] = ACTIONS(195), - [sym_number_literal] = ACTIONS(3506), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_identifier] = ACTIONS(3508), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(186), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(190), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [anon_sym_DASH_DASH] = ACTIONS(194), + [anon_sym_PLUS_PLUS] = ACTIONS(194), + [anon_sym_sizeof] = ACTIONS(196), + [sym_number_literal] = ACTIONS(3503), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3505), + [sym_false] = ACTIONS(3505), + [sym_null] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3505), + [sym_comment] = ACTIONS(82), }, [1247] = { [sym_compound_statement] = STATE(1057), @@ -52758,84 +63121,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1248] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3510), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3507), + [sym_comment] = ACTIONS(82), }, [1249] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1272), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1250] = { [sym__expression] = STATE(1273), @@ -52858,25 +63240,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1273), [sym_concatenated_string] = STATE(1273), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3512), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3514), - [sym_false] = ACTIONS(3514), - [sym_null] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3514), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3509), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3511), + [sym_false] = ACTIONS(3511), + [sym_null] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3511), + [sym_comment] = ACTIONS(82), }, [1251] = { [sym_compound_statement] = STATE(1182), @@ -52912,41 +63321,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [1252] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3516), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3513), + [sym_comment] = ACTIONS(82), }, [1253] = { [sym_compound_statement] = STATE(1182), @@ -52982,41 +63410,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [1254] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3518), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3515), + [sym_comment] = ACTIONS(82), }, [1255] = { [sym_compound_statement] = STATE(1228), @@ -53052,141 +63499,160 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [1256] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3520), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3517), + [sym_comment] = ACTIONS(82), }, [1257] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1277), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3517), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1258] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3422), - [sym_preproc_directive] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_auto] = ACTIONS(3422), - [anon_sym_register] = ACTIONS(3422), - [anon_sym_inline] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_restrict] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym__Atomic] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3422), - [anon_sym_unsigned] = ACTIONS(3422), - [anon_sym_long] = ACTIONS(3422), - [anon_sym_short] = ACTIONS(3422), - [sym_primitive_type] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_union] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_sizeof] = ACTIONS(3422), - [sym_number_literal] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(3420), - [sym_true] = ACTIONS(3422), - [sym_false] = ACTIONS(3422), - [sym_null] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3422), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_auto] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3419), + [sym_comment] = ACTIONS(82), }, [1259] = { [sym_compound_statement] = STATE(1278), @@ -53222,35 +63688,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2142), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(82), }, [1260] = { [sym_compound_statement] = STATE(1234), @@ -53286,100 +63771,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [1261] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3522), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3519), + [sym_comment] = ACTIONS(82), }, [1262] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3478), - [sym_preproc_directive] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_typedef] = ACTIONS(3478), - [anon_sym_extern] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_auto] = ACTIONS(3478), - [anon_sym_register] = ACTIONS(3478), - [anon_sym_inline] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_restrict] = ACTIONS(3478), - [anon_sym_volatile] = ACTIONS(3478), - [anon_sym__Atomic] = ACTIONS(3478), - [anon_sym_signed] = ACTIONS(3478), - [anon_sym_unsigned] = ACTIONS(3478), - [anon_sym_long] = ACTIONS(3478), - [anon_sym_short] = ACTIONS(3478), - [sym_primitive_type] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(3478), - [anon_sym_struct] = ACTIONS(3478), - [anon_sym_union] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_else] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_goto] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_sizeof] = ACTIONS(3478), - [sym_number_literal] = ACTIONS(3476), - [anon_sym_SQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [sym_true] = ACTIONS(3478), - [sym_false] = ACTIONS(3478), - [sym_null] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3478), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3473), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_LPAREN2] = ACTIONS(3473), + [anon_sym_STAR] = ACTIONS(3473), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_auto] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3473), + [anon_sym_BANG] = ACTIONS(3473), + [anon_sym_TILDE] = ACTIONS(3473), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3473), + [anon_sym_PLUS_PLUS] = ACTIONS(3473), + [anon_sym_sizeof] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3473), + [anon_sym_SQUOTE] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3473), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [sym_null] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3475), + [sym_comment] = ACTIONS(82), }, [1263] = { [sym_compound_statement] = STATE(1223), @@ -53415,35 +63919,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1045), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(82), }, [1264] = { [sym_compound_statement] = STATE(1129), @@ -53479,84 +64002,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1265] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3524), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3521), + [sym_comment] = ACTIONS(82), }, [1266] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1281), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3521), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1267] = { [sym_compound_statement] = STATE(936), @@ -53592,78 +64134,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1268] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1283), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3526), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1269] = { [sym__expression] = STATE(1284), @@ -53686,66 +64247,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1284), [sym_concatenated_string] = STATE(1284), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3526), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3530), - [sym_false] = ACTIONS(3530), - [sym_null] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3530), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3525), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3527), + [sym_false] = ACTIONS(3527), + [sym_null] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3527), + [sym_comment] = ACTIONS(82), }, [1270] = { [sym_argument_list] = STATE(142), - [anon_sym_SEMI] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1271] = { [sym_compound_statement] = STATE(1129), @@ -53781,84 +64369,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1272] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3534), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3531), + [sym_comment] = ACTIONS(82), }, [1273] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1287), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3531), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1274] = { [sym_compound_statement] = STATE(1223), @@ -53894,35 +64501,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1232), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(82), }, [1275] = { [sym_compound_statement] = STATE(1223), @@ -53958,35 +64584,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(173), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(1248), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(174), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(82), }, [1276] = { [sym_compound_statement] = STATE(1258), @@ -54022,98 +64667,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [1277] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3536), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3533), + [sym_comment] = ACTIONS(82), }, [1278] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3478), - [sym_preproc_directive] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_typedef] = ACTIONS(3478), - [anon_sym_extern] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(3476), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_auto] = ACTIONS(3478), - [anon_sym_register] = ACTIONS(3478), - [anon_sym_inline] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_restrict] = ACTIONS(3478), - [anon_sym_volatile] = ACTIONS(3478), - [anon_sym__Atomic] = ACTIONS(3478), - [anon_sym_signed] = ACTIONS(3478), - [anon_sym_unsigned] = ACTIONS(3478), - [anon_sym_long] = ACTIONS(3478), - [anon_sym_short] = ACTIONS(3478), - [sym_primitive_type] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(3478), - [anon_sym_struct] = ACTIONS(3478), - [anon_sym_union] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_else] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_goto] = ACTIONS(3478), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_sizeof] = ACTIONS(3478), - [sym_number_literal] = ACTIONS(3476), - [anon_sym_SQUOTE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [sym_true] = ACTIONS(3478), - [sym_false] = ACTIONS(3478), - [sym_null] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3478), - [sym_comment] = ACTIONS(81), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3475), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3473), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_LPAREN2] = ACTIONS(3473), + [anon_sym_STAR] = ACTIONS(3473), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_auto] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3473), + [anon_sym_BANG] = ACTIONS(3473), + [anon_sym_TILDE] = ACTIONS(3473), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3473), + [anon_sym_PLUS_PLUS] = ACTIONS(3473), + [anon_sym_sizeof] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3473), + [anon_sym_SQUOTE] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3473), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [sym_null] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3475), + [sym_comment] = ACTIONS(82), }, [1279] = { [sym_compound_statement] = STATE(1262), @@ -54149,35 +64813,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(180), [sym_concatenated_string] = STATE(180), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(356), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(368), - [anon_sym_break] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_goto] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_identifier] = ACTIONS(1588), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_null] = ACTIONS(379), + [sym_identifier] = ACTIONS(1587), + [sym_comment] = ACTIONS(82), }, [1280] = { [sym_compound_statement] = STATE(1182), @@ -54213,41 +64896,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1281] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3538), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3535), + [sym_comment] = ACTIONS(82), }, [1282] = { [sym_compound_statement] = STATE(1057), @@ -54283,84 +64985,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1283] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3540), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3537), + [sym_comment] = ACTIONS(82), }, [1284] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1291), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1285] = { [sym__expression] = STATE(1292), @@ -54383,25 +65104,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(1292), [sym_concatenated_string] = STATE(1292), [sym_string_literal] = STATE(72), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_sizeof] = ACTIONS(137), - [sym_number_literal] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [sym_null] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3544), - [sym_comment] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_DASH_DASH] = ACTIONS(136), + [anon_sym_PLUS_PLUS] = ACTIONS(136), + [anon_sym_sizeof] = ACTIONS(138), + [sym_number_literal] = ACTIONS(3539), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [sym_null] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3541), + [sym_comment] = ACTIONS(82), }, [1286] = { [sym_compound_statement] = STATE(1182), @@ -54437,41 +65185,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1287] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3546), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3543), + [sym_comment] = ACTIONS(82), }, [1288] = { [sym_compound_statement] = STATE(1278), @@ -54507,35 +65274,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(370), [sym_concatenated_string] = STATE(370), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(949), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_goto] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_identifier] = ACTIONS(2138), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(82), }, [1289] = { [sym_compound_statement] = STATE(1223), @@ -54571,35 +65357,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(2458), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(82), }, [1290] = { [sym_compound_statement] = STATE(1129), @@ -54635,84 +65440,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1291] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3548), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3545), + [sym_comment] = ACTIONS(82), }, [1292] = { [sym_argument_list] = STATE(142), [aux_sym_for_statement_repeat1] = STATE(1295), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3548), - [anon_sym_LPAREN2] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(302), + [anon_sym_PLUS_PLUS] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(304), + [sym_comment] = ACTIONS(82), }, [1293] = { [sym_compound_statement] = STATE(1223), @@ -54748,35 +65572,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3079), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3076), + [sym_comment] = ACTIONS(82), }, [1294] = { [sym_compound_statement] = STATE(1182), @@ -54812,41 +65655,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, [1295] = { [aux_sym_for_statement_repeat1] = STATE(752), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(3550), - [sym_comment] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(3547), + [sym_comment] = ACTIONS(82), }, [1296] = { [sym_compound_statement] = STATE(1223), @@ -54882,1726 +65744,1744 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = STATE(37), [sym_concatenated_string] = STATE(37), [sym_string_literal] = STATE(39), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_goto] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(67), - [anon_sym_sizeof] = ACTIONS(69), - [sym_number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_null] = ACTIONS(77), - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(18), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(24), + [anon_sym_LPAREN2] = ACTIONS(26), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(46), + [anon_sym_case] = ACTIONS(1), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(50), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(54), + [anon_sym_break] = ACTIONS(56), + [anon_sym_continue] = ACTIONS(58), + [anon_sym_goto] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(62), + [anon_sym_TILDE] = ACTIONS(64), + [anon_sym_PLUS] = ACTIONS(66), + [anon_sym_DASH] = ACTIONS(66), + [anon_sym_DASH_DASH] = ACTIONS(68), + [anon_sym_PLUS_PLUS] = ACTIONS(68), + [anon_sym_sizeof] = ACTIONS(70), + [sym_number_literal] = ACTIONS(72), + [anon_sym_SQUOTE] = ACTIONS(74), + [anon_sym_DQUOTE] = ACTIONS(76), + [sym_true] = ACTIONS(78), + [sym_false] = ACTIONS(78), + [sym_null] = ACTIONS(78), + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(82), }, }; static TSParseActionEntry ts_parse_actions[] = { [0] = {.count = 0, .reusable = false}, - [1] = {.count = 1, .reusable = true}, RECOVER(), - [3] = {.count = 1, .reusable = false}, RECOVER(), - [5] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), - [7] = {.count = 1, .reusable = false}, SHIFT(2), - [9] = {.count = 1, .reusable = false}, SHIFT(3), - [11] = {.count = 1, .reusable = false}, SHIFT(4), - [13] = {.count = 1, .reusable = false}, SHIFT(5), - [15] = {.count = 1, .reusable = false}, SHIFT(6), - [17] = {.count = 1, .reusable = true}, SHIFT(7), - [19] = {.count = 1, .reusable = false}, SHIFT(8), - [21] = {.count = 1, .reusable = false}, SHIFT(9), - [23] = {.count = 1, .reusable = true}, SHIFT(10), - [25] = {.count = 1, .reusable = true}, SHIFT(11), - [27] = {.count = 1, .reusable = true}, SHIFT(12), - [29] = {.count = 1, .reusable = false}, SHIFT(13), - [31] = {.count = 1, .reusable = false}, SHIFT(14), - [33] = {.count = 1, .reusable = false}, SHIFT(42), - [35] = {.count = 1, .reusable = false}, SHIFT(36), - [37] = {.count = 1, .reusable = false}, SHIFT(15), - [39] = {.count = 1, .reusable = false}, SHIFT(16), - [41] = {.count = 1, .reusable = false}, SHIFT(17), - [43] = {.count = 1, .reusable = false}, SHIFT(18), - [45] = {.count = 1, .reusable = false}, SHIFT(19), - [47] = {.count = 1, .reusable = false}, SHIFT(20), - [49] = {.count = 1, .reusable = false}, SHIFT(21), - [51] = {.count = 1, .reusable = false}, SHIFT(22), - [53] = {.count = 1, .reusable = false}, SHIFT(23), - [55] = {.count = 1, .reusable = false}, SHIFT(24), - [57] = {.count = 1, .reusable = false}, SHIFT(25), - [59] = {.count = 1, .reusable = false}, SHIFT(26), - [61] = {.count = 1, .reusable = true}, SHIFT(27), - [63] = {.count = 1, .reusable = true}, SHIFT(28), - [65] = {.count = 1, .reusable = false}, SHIFT(29), - [67] = {.count = 1, .reusable = true}, SHIFT(29), - [69] = {.count = 1, .reusable = false}, SHIFT(30), - [71] = {.count = 1, .reusable = true}, SHIFT(37), - [73] = {.count = 1, .reusable = true}, SHIFT(31), - [75] = {.count = 1, .reusable = true}, SHIFT(32), - [77] = {.count = 1, .reusable = false}, SHIFT(37), - [79] = {.count = 1, .reusable = false}, SHIFT(33), - [81] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [83] = {.count = 1, .reusable = true}, SHIFT(43), - [85] = {.count = 1, .reusable = true}, SHIFT(44), - [87] = {.count = 1, .reusable = true}, SHIFT(45), - [89] = {.count = 1, .reusable = false}, SHIFT(46), - [91] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [93] = {.count = 1, .reusable = true}, SHIFT(47), - [95] = {.count = 1, .reusable = false}, SHIFT(48), - [97] = {.count = 1, .reusable = false}, SHIFT(49), - [99] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [101] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [103] = {.count = 1, .reusable = false}, SHIFT(53), - [105] = {.count = 1, .reusable = false}, SHIFT(51), - [107] = {.count = 1, .reusable = false}, SHIFT(50), - [109] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [111] = {.count = 1, .reusable = true}, SHIFT(55), - [113] = {.count = 1, .reusable = false}, SHIFT(56), - [115] = {.count = 1, .reusable = false}, SHIFT(57), - [117] = {.count = 1, .reusable = false}, SHIFT(58), - [119] = {.count = 1, .reusable = false}, SHIFT(59), - [121] = {.count = 1, .reusable = true}, SHIFT(61), - [123] = {.count = 1, .reusable = true}, SHIFT(62), - [125] = {.count = 1, .reusable = false}, SHIFT(74), - [127] = {.count = 1, .reusable = false}, SHIFT(68), - [129] = {.count = 1, .reusable = true}, SHIFT(63), - [131] = {.count = 1, .reusable = true}, SHIFT(64), - [133] = {.count = 1, .reusable = false}, SHIFT(65), - [135] = {.count = 1, .reusable = true}, SHIFT(65), - [137] = {.count = 1, .reusable = false}, SHIFT(66), - [139] = {.count = 1, .reusable = true}, SHIFT(69), - [141] = {.count = 1, .reusable = false}, SHIFT(69), - [143] = {.count = 1, .reusable = false}, SHIFT(67), - [145] = {.count = 1, .reusable = true}, SHIFT(75), - [147] = {.count = 1, .reusable = false}, SHIFT(75), - [149] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [151] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [153] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [155] = {.count = 1, .reusable = true}, SHIFT(76), - [157] = {.count = 1, .reusable = true}, SHIFT(77), - [159] = {.count = 1, .reusable = true}, SHIFT(79), - [161] = {.count = 1, .reusable = true}, SHIFT(80), - [163] = {.count = 1, .reusable = true}, SHIFT(82), - [165] = {.count = 1, .reusable = true}, SHIFT(84), - [167] = {.count = 1, .reusable = true}, SHIFT(86), - [169] = {.count = 1, .reusable = false}, SHIFT(89), - [171] = {.count = 1, .reusable = false}, SHIFT(90), - [173] = {.count = 1, .reusable = false}, SHIFT(91), - [175] = {.count = 1, .reusable = false}, SHIFT(92), - [177] = {.count = 1, .reusable = false}, SHIFT(93), - [179] = {.count = 1, .reusable = true}, SHIFT(95), - [181] = {.count = 1, .reusable = true}, SHIFT(96), - [183] = {.count = 1, .reusable = true}, SHIFT(97), - [185] = {.count = 1, .reusable = true}, SHIFT(98), - [187] = {.count = 1, .reusable = true}, SHIFT(99), - [189] = {.count = 1, .reusable = true}, SHIFT(100), - [191] = {.count = 1, .reusable = false}, SHIFT(101), - [193] = {.count = 1, .reusable = true}, SHIFT(101), - [195] = {.count = 1, .reusable = false}, SHIFT(102), - [197] = {.count = 1, .reusable = true}, SHIFT(103), - [199] = {.count = 1, .reusable = false}, SHIFT(103), - [201] = {.count = 1, .reusable = true}, SHIFT(105), - [203] = {.count = 1, .reusable = true}, SHIFT(106), - [205] = {.count = 1, .reusable = true}, SHIFT(107), - [207] = {.count = 1, .reusable = true}, SHIFT(108), - [209] = {.count = 1, .reusable = false}, SHIFT(108), - [211] = {.count = 1, .reusable = true}, SHIFT(109), - [213] = {.count = 1, .reusable = false}, SHIFT(109), - [215] = {.count = 1, .reusable = true}, SHIFT(110), - [217] = {.count = 1, .reusable = false}, SHIFT(110), - [219] = {.count = 1, .reusable = true}, SHIFT(111), - [221] = {.count = 1, .reusable = true}, SHIFT(112), - [223] = {.count = 1, .reusable = false}, SHIFT(112), - [225] = {.count = 1, .reusable = false}, SHIFT(113), - [227] = {.count = 1, .reusable = true}, SHIFT(113), - [229] = {.count = 1, .reusable = false}, SHIFT(114), - [231] = {.count = 1, .reusable = true}, SHIFT(115), - [233] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [235] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [238] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [240] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(116), - [244] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [247] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [249] = {.count = 1, .reusable = true}, SHIFT(117), - [251] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [253] = {.count = 1, .reusable = true}, SHIFT(118), - [255] = {.count = 1, .reusable = true}, SHIFT(119), - [257] = {.count = 1, .reusable = true}, SHIFT(120), - [259] = {.count = 1, .reusable = true}, SHIFT(121), - [261] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), - [263] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), - [265] = {.count = 1, .reusable = true}, SHIFT(124), - [267] = {.count = 1, .reusable = true}, SHIFT(125), - [269] = {.count = 1, .reusable = true}, SHIFT(126), - [271] = {.count = 1, .reusable = false}, SHIFT(127), - [273] = {.count = 1, .reusable = true}, SHIFT(128), - [275] = {.count = 1, .reusable = false}, SHIFT(129), - [277] = {.count = 1, .reusable = true}, SHIFT(130), - [279] = {.count = 1, .reusable = true}, SHIFT(129), - [281] = {.count = 1, .reusable = false}, SHIFT(131), - [283] = {.count = 1, .reusable = true}, SHIFT(132), - [285] = {.count = 1, .reusable = true}, SHIFT(133), - [287] = {.count = 1, .reusable = false}, SHIFT(134), - [289] = {.count = 1, .reusable = false}, SHIFT(135), - [291] = {.count = 1, .reusable = true}, SHIFT(136), - [293] = {.count = 1, .reusable = false}, SHIFT(137), - [295] = {.count = 1, .reusable = true}, SHIFT(137), - [297] = {.count = 1, .reusable = false}, SHIFT(138), - [299] = {.count = 1, .reusable = false}, SHIFT(139), - [301] = {.count = 1, .reusable = true}, SHIFT(140), - [303] = {.count = 1, .reusable = true}, SHIFT(141), - [305] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [307] = {.count = 1, .reusable = false}, SHIFT(145), - [309] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [311] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [313] = {.count = 1, .reusable = false}, SHIFT(149), - [315] = {.count = 1, .reusable = false}, SHIFT(147), - [317] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(148), - [320] = {.count = 1, .reusable = false}, SHIFT(150), - [322] = {.count = 1, .reusable = true}, SHIFT(151), - [324] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), - [326] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), - [328] = {.count = 1, .reusable = false}, SHIFT(152), - [330] = {.count = 1, .reusable = true}, SHIFT(153), - [332] = {.count = 1, .reusable = false}, SHIFT(154), - [334] = {.count = 1, .reusable = false}, SHIFT(156), - [336] = {.count = 1, .reusable = false}, SHIFT(157), - [338] = {.count = 1, .reusable = false}, SHIFT(158), - [340] = {.count = 1, .reusable = false}, SHIFT(159), - [342] = {.count = 1, .reusable = false}, SHIFT(160), - [344] = {.count = 1, .reusable = false}, SHIFT(161), - [346] = {.count = 1, .reusable = false}, SHIFT(162), - [348] = {.count = 1, .reusable = false}, SHIFT(163), - [350] = {.count = 1, .reusable = true}, SHIFT(164), - [352] = {.count = 1, .reusable = false}, SHIFT(165), - [354] = {.count = 1, .reusable = false}, SHIFT(166), - [356] = {.count = 1, .reusable = true}, SHIFT(167), - [358] = {.count = 1, .reusable = false}, SHIFT(168), - [360] = {.count = 1, .reusable = false}, SHIFT(169), - [362] = {.count = 1, .reusable = false}, SHIFT(170), - [364] = {.count = 1, .reusable = false}, SHIFT(171), - [366] = {.count = 1, .reusable = false}, SHIFT(172), - [368] = {.count = 1, .reusable = false}, SHIFT(173), - [370] = {.count = 1, .reusable = false}, SHIFT(174), - [372] = {.count = 1, .reusable = false}, SHIFT(175), - [374] = {.count = 1, .reusable = false}, SHIFT(176), - [376] = {.count = 1, .reusable = true}, SHIFT(180), - [378] = {.count = 1, .reusable = false}, SHIFT(180), - [380] = {.count = 1, .reusable = false}, SHIFT(177), - [382] = {.count = 1, .reusable = false}, SHIFT(183), - [384] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), - [386] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), - [388] = {.count = 1, .reusable = true}, SHIFT(186), - [390] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [392] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(116), - [395] = {.count = 1, .reusable = true}, SHIFT(187), - [397] = {.count = 1, .reusable = true}, SHIFT(188), - [399] = {.count = 1, .reusable = true}, SHIFT(189), - [401] = {.count = 1, .reusable = false}, SHIFT(191), - [403] = {.count = 1, .reusable = false}, SHIFT(193), - [405] = {.count = 1, .reusable = true}, SHIFT(194), - [407] = {.count = 1, .reusable = false}, SHIFT(199), - [409] = {.count = 1, .reusable = false}, SHIFT(197), - [411] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [413] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [415] = {.count = 1, .reusable = true}, SHIFT(202), - [417] = {.count = 1, .reusable = true}, SHIFT(203), - [419] = {.count = 1, .reusable = true}, SHIFT(204), - [421] = {.count = 1, .reusable = true}, SHIFT(207), - [423] = {.count = 1, .reusable = true}, SHIFT(208), - [425] = {.count = 1, .reusable = false}, SHIFT(208), - [427] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [429] = {.count = 1, .reusable = true}, SHIFT(209), - [431] = {.count = 1, .reusable = true}, SHIFT(210), - [433] = {.count = 1, .reusable = true}, SHIFT(211), - [435] = {.count = 1, .reusable = true}, SHIFT(214), - [437] = {.count = 1, .reusable = true}, SHIFT(215), - [439] = {.count = 1, .reusable = false}, SHIFT(216), - [441] = {.count = 1, .reusable = false}, SHIFT(217), - [443] = {.count = 1, .reusable = true}, SHIFT(218), - [445] = {.count = 1, .reusable = true}, SHIFT(217), - [447] = {.count = 1, .reusable = false}, SHIFT(219), - [449] = {.count = 1, .reusable = true}, SHIFT(220), - [451] = {.count = 1, .reusable = true}, SHIFT(221), - [453] = {.count = 1, .reusable = false}, SHIFT(222), - [455] = {.count = 1, .reusable = false}, SHIFT(223), - [457] = {.count = 1, .reusable = true}, SHIFT(224), - [459] = {.count = 1, .reusable = false}, SHIFT(225), - [461] = {.count = 1, .reusable = true}, SHIFT(225), - [463] = {.count = 1, .reusable = false}, SHIFT(226), - [465] = {.count = 1, .reusable = false}, SHIFT(227), - [467] = {.count = 1, .reusable = true}, SHIFT(228), - [469] = {.count = 1, .reusable = false}, SHIFT(230), - [471] = {.count = 1, .reusable = false}, SHIFT(231), - [473] = {.count = 1, .reusable = false}, SHIFT(148), - [475] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [477] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [479] = {.count = 1, .reusable = true}, SHIFT(232), - [481] = {.count = 1, .reusable = true}, SHIFT(233), - [483] = {.count = 1, .reusable = true}, SHIFT(234), - [485] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [487] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [489] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), - [491] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), - [493] = {.count = 1, .reusable = false}, SHIFT(237), - [495] = {.count = 1, .reusable = true}, SHIFT(238), - [497] = {.count = 1, .reusable = true}, SHIFT(239), - [499] = {.count = 1, .reusable = false}, SHIFT(244), - [501] = {.count = 1, .reusable = false}, SHIFT(241), - [503] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [505] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [507] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), - [509] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), - [511] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [513] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [515] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), - [517] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), - [519] = {.count = 1, .reusable = true}, SHIFT(247), - [521] = {.count = 1, .reusable = false}, SHIFT(247), - [523] = {.count = 1, .reusable = false}, SHIFT(249), - [525] = {.count = 1, .reusable = false}, SHIFT(250), - [527] = {.count = 1, .reusable = false}, SHIFT(251), - [529] = {.count = 1, .reusable = false}, SHIFT(252), - [531] = {.count = 1, .reusable = true}, SHIFT(254), - [533] = {.count = 1, .reusable = false}, SHIFT(256), - [535] = {.count = 1, .reusable = true}, SHIFT(261), - [537] = {.count = 1, .reusable = true}, SHIFT(262), - [539] = {.count = 1, .reusable = true}, SHIFT(263), - [541] = {.count = 1, .reusable = true}, SHIFT(264), - [543] = {.count = 1, .reusable = true}, SHIFT(267), - [545] = {.count = 1, .reusable = false}, SHIFT(267), - [547] = {.count = 1, .reusable = false}, SHIFT(265), - [549] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [551] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [553] = {.count = 1, .reusable = true}, SHIFT(269), - [555] = {.count = 1, .reusable = true}, SHIFT(270), - [557] = {.count = 1, .reusable = false}, SHIFT(270), - [559] = {.count = 1, .reusable = true}, SHIFT(271), - [561] = {.count = 1, .reusable = false}, SHIFT(272), - [563] = {.count = 1, .reusable = false}, SHIFT(273), - [565] = {.count = 1, .reusable = true}, SHIFT(274), - [567] = {.count = 1, .reusable = true}, SHIFT(273), - [569] = {.count = 1, .reusable = false}, SHIFT(275), - [571] = {.count = 1, .reusable = true}, SHIFT(276), - [573] = {.count = 1, .reusable = true}, SHIFT(277), - [575] = {.count = 1, .reusable = false}, SHIFT(278), - [577] = {.count = 1, .reusable = false}, SHIFT(279), - [579] = {.count = 1, .reusable = true}, SHIFT(280), - [581] = {.count = 1, .reusable = false}, SHIFT(281), - [583] = {.count = 1, .reusable = true}, SHIFT(281), - [585] = {.count = 1, .reusable = false}, SHIFT(282), - [587] = {.count = 1, .reusable = false}, SHIFT(283), - [589] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [591] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [593] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [595] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [597] = {.count = 1, .reusable = true}, SHIFT(285), - [599] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [601] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [603] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [605] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [607] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [609] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [611] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [613] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [615] = {.count = 1, .reusable = true}, SHIFT(287), - [617] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [619] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [621] = {.count = 1, .reusable = false}, SHIFT(288), - [623] = {.count = 1, .reusable = true}, SHIFT(289), - [625] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [627] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [629] = {.count = 1, .reusable = true}, SHIFT(292), - [631] = {.count = 1, .reusable = true}, SHIFT(293), - [633] = {.count = 1, .reusable = false}, SHIFT(294), - [635] = {.count = 1, .reusable = true}, SHIFT(296), - [637] = {.count = 1, .reusable = true}, SHIFT(297), - [639] = {.count = 1, .reusable = true}, SHIFT(298), - [641] = {.count = 1, .reusable = true}, SHIFT(299), - [643] = {.count = 1, .reusable = true}, SHIFT(300), - [645] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), - [647] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), - [649] = {.count = 1, .reusable = true}, SHIFT(305), - [651] = {.count = 1, .reusable = false}, SHIFT(305), - [653] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [655] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [657] = {.count = 1, .reusable = true}, SHIFT(307), - [659] = {.count = 1, .reusable = true}, SHIFT(308), - [661] = {.count = 1, .reusable = false}, SHIFT(308), - [663] = {.count = 1, .reusable = true}, SHIFT(309), - [665] = {.count = 1, .reusable = false}, SHIFT(309), - [667] = {.count = 1, .reusable = true}, SHIFT(310), - [669] = {.count = 1, .reusable = true}, SHIFT(311), - [671] = {.count = 1, .reusable = true}, SHIFT(312), - [673] = {.count = 1, .reusable = true}, SHIFT(313), - [675] = {.count = 1, .reusable = false}, SHIFT(314), - [677] = {.count = 1, .reusable = true}, SHIFT(314), - [679] = {.count = 1, .reusable = false}, SHIFT(315), - [681] = {.count = 1, .reusable = true}, SHIFT(316), - [683] = {.count = 1, .reusable = false}, SHIFT(316), - [685] = {.count = 1, .reusable = true}, SHIFT(318), - [687] = {.count = 1, .reusable = false}, SHIFT(318), - [689] = {.count = 1, .reusable = true}, SHIFT(319), - [691] = {.count = 1, .reusable = true}, SHIFT(320), - [693] = {.count = 1, .reusable = true}, SHIFT(321), - [695] = {.count = 1, .reusable = true}, SHIFT(322), - [697] = {.count = 1, .reusable = false}, SHIFT(323), - [699] = {.count = 1, .reusable = true}, SHIFT(323), - [701] = {.count = 1, .reusable = false}, SHIFT(324), - [703] = {.count = 1, .reusable = true}, SHIFT(325), - [705] = {.count = 1, .reusable = false}, SHIFT(325), - [707] = {.count = 1, .reusable = true}, SHIFT(327), - [709] = {.count = 1, .reusable = false}, SHIFT(327), - [711] = {.count = 1, .reusable = true}, SHIFT(328), - [713] = {.count = 1, .reusable = false}, SHIFT(328), - [715] = {.count = 1, .reusable = true}, SHIFT(329), - [717] = {.count = 1, .reusable = false}, SHIFT(329), - [719] = {.count = 1, .reusable = true}, SHIFT(330), - [721] = {.count = 1, .reusable = false}, SHIFT(330), - [723] = {.count = 1, .reusable = true}, SHIFT(331), - [725] = {.count = 1, .reusable = false}, SHIFT(331), - [727] = {.count = 1, .reusable = true}, SHIFT(332), - [729] = {.count = 1, .reusable = false}, SHIFT(332), - [731] = {.count = 1, .reusable = true}, SHIFT(333), - [733] = {.count = 1, .reusable = false}, SHIFT(333), - [735] = {.count = 1, .reusable = true}, SHIFT(334), - [737] = {.count = 1, .reusable = false}, SHIFT(334), - [739] = {.count = 1, .reusable = true}, SHIFT(335), - [741] = {.count = 1, .reusable = false}, SHIFT(335), - [743] = {.count = 1, .reusable = true}, SHIFT(336), - [745] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [747] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [749] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [751] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [753] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [764] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [770] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [779] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [794] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), - [797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), - [800] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [803] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), - [815] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [821] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), - [824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [833] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [836] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [839] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [845] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [851] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), - [854] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), - [863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [866] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(13), - [869] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(14), - [872] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [874] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), - [876] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), - [878] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [880] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [882] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [884] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [886] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(149), - [889] = {.count = 1, .reusable = false}, SHIFT(339), - [891] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), - [893] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), - [895] = {.count = 1, .reusable = true}, SHIFT(340), - [897] = {.count = 1, .reusable = true}, SHIFT(341), - [899] = {.count = 1, .reusable = true}, SHIFT(342), - [901] = {.count = 1, .reusable = false}, SHIFT(343), - [903] = {.count = 1, .reusable = false}, SHIFT(344), - [905] = {.count = 1, .reusable = true}, SHIFT(345), - [907] = {.count = 1, .reusable = true}, SHIFT(346), - [909] = {.count = 1, .reusable = true}, SHIFT(347), - [911] = {.count = 1, .reusable = false}, SHIFT(348), - [913] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), - [915] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), - [917] = {.count = 1, .reusable = true}, SHIFT(349), - [919] = {.count = 1, .reusable = false}, SHIFT(350), - [921] = {.count = 1, .reusable = false}, SHIFT(351), - [923] = {.count = 1, .reusable = false}, SHIFT(352), - [925] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [927] = {.count = 1, .reusable = false}, SHIFT(353), - [929] = {.count = 1, .reusable = false}, SHIFT(354), - [931] = {.count = 1, .reusable = true}, SHIFT(355), - [933] = {.count = 1, .reusable = false}, SHIFT(356), - [935] = {.count = 1, .reusable = false}, SHIFT(357), - [937] = {.count = 1, .reusable = true}, SHIFT(358), - [939] = {.count = 1, .reusable = false}, SHIFT(359), - [941] = {.count = 1, .reusable = false}, SHIFT(360), - [943] = {.count = 1, .reusable = false}, SHIFT(361), - [945] = {.count = 1, .reusable = false}, SHIFT(362), - [947] = {.count = 1, .reusable = false}, SHIFT(363), - [949] = {.count = 1, .reusable = false}, SHIFT(364), - [951] = {.count = 1, .reusable = false}, SHIFT(365), - [953] = {.count = 1, .reusable = false}, SHIFT(366), - [955] = {.count = 1, .reusable = false}, SHIFT(367), - [957] = {.count = 1, .reusable = true}, SHIFT(370), - [959] = {.count = 1, .reusable = false}, SHIFT(370), - [961] = {.count = 1, .reusable = false}, SHIFT(368), - [963] = {.count = 1, .reusable = false}, SHIFT(373), - [965] = {.count = 1, .reusable = false}, SHIFT(374), - [967] = {.count = 1, .reusable = false}, SHIFT(375), - [969] = {.count = 1, .reusable = false}, SHIFT(376), - [971] = {.count = 1, .reusable = true}, SHIFT(379), - [973] = {.count = 1, .reusable = true}, SHIFT(385), - [975] = {.count = 1, .reusable = true}, SHIFT(386), - [977] = {.count = 1, .reusable = true}, SHIFT(387), - [979] = {.count = 1, .reusable = false}, SHIFT(387), - [981] = {.count = 1, .reusable = true}, SHIFT(388), - [983] = {.count = 1, .reusable = true}, SHIFT(389), - [985] = {.count = 1, .reusable = true}, SHIFT(390), - [987] = {.count = 1, .reusable = true}, SHIFT(391), - [989] = {.count = 1, .reusable = true}, SHIFT(392), - [991] = {.count = 1, .reusable = true}, SHIFT(393), - [993] = {.count = 1, .reusable = true}, SHIFT(394), - [995] = {.count = 1, .reusable = true}, SHIFT(396), - [997] = {.count = 1, .reusable = false}, SHIFT(392), - [999] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), - [1001] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), - [1003] = {.count = 1, .reusable = true}, SHIFT(399), - [1005] = {.count = 1, .reusable = false}, SHIFT(399), - [1007] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), - [1009] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), - [1011] = {.count = 1, .reusable = true}, SHIFT(401), - [1013] = {.count = 1, .reusable = false}, SHIFT(189), - [1015] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [1017] = {.count = 1, .reusable = true}, SHIFT(405), - [1019] = {.count = 1, .reusable = true}, SHIFT(406), - [1021] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), - [1024] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(193), - [1029] = {.count = 1, .reusable = true}, SHIFT(409), - [1031] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [1033] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [1035] = {.count = 1, .reusable = false}, SHIFT(412), - [1037] = {.count = 1, .reusable = false}, SHIFT(413), - [1039] = {.count = 1, .reusable = false}, SHIFT(414), - [1041] = {.count = 1, .reusable = false}, SHIFT(415), - [1043] = {.count = 1, .reusable = false}, SHIFT(416), - [1045] = {.count = 1, .reusable = false}, SHIFT(417), - [1047] = {.count = 1, .reusable = false}, SHIFT(419), - [1049] = {.count = 1, .reusable = true}, SHIFT(420), - [1051] = {.count = 1, .reusable = true}, SHIFT(421), - [1053] = {.count = 1, .reusable = false}, SHIFT(421), - [1055] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1057] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1059] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(56), - [1062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(57), - [1065] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), - [1068] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(59), - [1071] = {.count = 1, .reusable = true}, SHIFT(422), - [1073] = {.count = 1, .reusable = true}, SHIFT(424), - [1075] = {.count = 1, .reusable = true}, SHIFT(425), - [1077] = {.count = 1, .reusable = false}, SHIFT(430), - [1079] = {.count = 1, .reusable = false}, SHIFT(428), - [1081] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1083] = {.count = 1, .reusable = true}, SHIFT(14), - [1085] = {.count = 1, .reusable = true}, SHIFT(433), - [1087] = {.count = 1, .reusable = true}, SHIFT(434), - [1089] = {.count = 1, .reusable = true}, SHIFT(435), - [1091] = {.count = 1, .reusable = false}, SHIFT(435), - [1093] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [1095] = {.count = 1, .reusable = true}, SHIFT(437), - [1097] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [1099] = {.count = 1, .reusable = true}, SHIFT(439), - [1101] = {.count = 1, .reusable = false}, SHIFT(439), - [1103] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1105] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1107] = {.count = 1, .reusable = true}, SHIFT(440), - [1109] = {.count = 1, .reusable = false}, SHIFT(440), - [1111] = {.count = 1, .reusable = true}, SHIFT(441), - [1113] = {.count = 1, .reusable = false}, SHIFT(441), - [1115] = {.count = 1, .reusable = true}, SHIFT(442), - [1117] = {.count = 1, .reusable = false}, SHIFT(442), - [1119] = {.count = 1, .reusable = true}, SHIFT(443), - [1121] = {.count = 1, .reusable = false}, SHIFT(443), - [1123] = {.count = 1, .reusable = true}, SHIFT(444), - [1125] = {.count = 1, .reusable = false}, SHIFT(444), - [1127] = {.count = 1, .reusable = true}, SHIFT(445), - [1129] = {.count = 1, .reusable = false}, SHIFT(445), - [1131] = {.count = 1, .reusable = true}, SHIFT(446), - [1133] = {.count = 1, .reusable = false}, SHIFT(446), - [1135] = {.count = 1, .reusable = true}, SHIFT(447), - [1137] = {.count = 1, .reusable = false}, SHIFT(447), - [1139] = {.count = 1, .reusable = true}, SHIFT(448), - [1141] = {.count = 1, .reusable = false}, SHIFT(448), - [1143] = {.count = 1, .reusable = true}, SHIFT(449), - [1145] = {.count = 1, .reusable = false}, SHIFT(449), - [1147] = {.count = 1, .reusable = true}, SHIFT(450), - [1149] = {.count = 1, .reusable = false}, SHIFT(450), - [1151] = {.count = 1, .reusable = true}, SHIFT(451), - [1153] = {.count = 1, .reusable = true}, SHIFT(452), - [1155] = {.count = 1, .reusable = false}, SHIFT(452), - [1157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(231), - [1160] = {.count = 1, .reusable = true}, SHIFT(456), - [1162] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [1164] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [1166] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [1168] = {.count = 1, .reusable = true}, SHIFT(457), - [1170] = {.count = 1, .reusable = true}, SHIFT(458), - [1172] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [1174] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [1176] = {.count = 1, .reusable = false}, SHIFT(460), - [1178] = {.count = 1, .reusable = true}, SHIFT(461), - [1180] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [1182] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [1184] = {.count = 1, .reusable = true}, SHIFT(462), - [1186] = {.count = 1, .reusable = true}, SHIFT(463), - [1188] = {.count = 1, .reusable = true}, SHIFT(464), - [1190] = {.count = 1, .reusable = true}, SHIFT(465), - [1192] = {.count = 1, .reusable = true}, SHIFT(466), - [1194] = {.count = 1, .reusable = true}, SHIFT(470), - [1196] = {.count = 1, .reusable = false}, SHIFT(472), - [1198] = {.count = 1, .reusable = false}, SHIFT(473), - [1200] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [1202] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [1204] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [1206] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [1208] = {.count = 1, .reusable = true}, SHIFT(474), - [1210] = {.count = 1, .reusable = true}, SHIFT(477), - [1212] = {.count = 1, .reusable = true}, SHIFT(478), - [1214] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), - [1216] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), - [1218] = {.count = 1, .reusable = false}, SHIFT(479), - [1220] = {.count = 1, .reusable = true}, SHIFT(480), - [1222] = {.count = 1, .reusable = false}, SHIFT(481), - [1224] = {.count = 1, .reusable = false}, SHIFT(482), - [1226] = {.count = 1, .reusable = false}, SHIFT(483), - [1228] = {.count = 1, .reusable = false}, SHIFT(484), - [1230] = {.count = 1, .reusable = false}, SHIFT(485), - [1232] = {.count = 1, .reusable = false}, SHIFT(486), - [1234] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), - [1236] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), - [1238] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1240] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1242] = {.count = 1, .reusable = false}, SHIFT(488), - [1244] = {.count = 1, .reusable = false}, SHIFT(489), - [1246] = {.count = 1, .reusable = false}, SHIFT(490), - [1248] = {.count = 1, .reusable = false}, SHIFT(491), - [1250] = {.count = 1, .reusable = true}, SHIFT(493), - [1252] = {.count = 1, .reusable = true}, SHIFT(494), - [1254] = {.count = 1, .reusable = true}, SHIFT(495), - [1256] = {.count = 1, .reusable = false}, SHIFT(495), - [1258] = {.count = 1, .reusable = true}, SHIFT(497), - [1260] = {.count = 1, .reusable = true}, SHIFT(498), - [1262] = {.count = 1, .reusable = false}, SHIFT(498), - [1264] = {.count = 1, .reusable = true}, SHIFT(499), - [1266] = {.count = 1, .reusable = true}, SHIFT(500), - [1268] = {.count = 1, .reusable = true}, SHIFT(501), - [1270] = {.count = 1, .reusable = true}, SHIFT(502), - [1272] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [1274] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [1276] = {.count = 1, .reusable = true}, SHIFT(504), - [1278] = {.count = 1, .reusable = false}, SHIFT(504), - [1280] = {.count = 1, .reusable = true}, SHIFT(505), - [1282] = {.count = 1, .reusable = false}, SHIFT(505), - [1284] = {.count = 1, .reusable = true}, SHIFT(506), - [1286] = {.count = 1, .reusable = false}, SHIFT(506), - [1288] = {.count = 1, .reusable = true}, SHIFT(507), - [1290] = {.count = 1, .reusable = false}, SHIFT(507), - [1292] = {.count = 1, .reusable = true}, SHIFT(508), - [1294] = {.count = 1, .reusable = false}, SHIFT(508), - [1296] = {.count = 1, .reusable = true}, SHIFT(509), - [1298] = {.count = 1, .reusable = false}, SHIFT(509), - [1300] = {.count = 1, .reusable = true}, SHIFT(510), - [1302] = {.count = 1, .reusable = false}, SHIFT(510), - [1304] = {.count = 1, .reusable = true}, SHIFT(511), - [1306] = {.count = 1, .reusable = false}, SHIFT(511), - [1308] = {.count = 1, .reusable = true}, SHIFT(512), - [1310] = {.count = 1, .reusable = false}, SHIFT(512), - [1312] = {.count = 1, .reusable = true}, SHIFT(513), - [1314] = {.count = 1, .reusable = false}, SHIFT(513), - [1316] = {.count = 1, .reusable = true}, SHIFT(514), - [1318] = {.count = 1, .reusable = false}, SHIFT(514), - [1320] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), - [1322] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), - [1324] = {.count = 1, .reusable = true}, SHIFT(516), - [1326] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1328] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1330] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [1332] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [1334] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [1336] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(289), - [1339] = {.count = 1, .reusable = true}, SHIFT(517), - [1341] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), - [1343] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), - [1345] = {.count = 1, .reusable = true}, SHIFT(519), - [1347] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), - [1349] = {.count = 1, .reusable = false}, SHIFT(520), - [1351] = {.count = 1, .reusable = true}, SHIFT(522), - [1353] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [1355] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [1357] = {.count = 1, .reusable = true}, SHIFT(524), - [1359] = {.count = 1, .reusable = true}, SHIFT(525), - [1361] = {.count = 1, .reusable = true}, SHIFT(526), - [1363] = {.count = 1, .reusable = false}, SHIFT(526), - [1365] = {.count = 1, .reusable = true}, SHIFT(528), - [1367] = {.count = 1, .reusable = false}, SHIFT(528), - [1369] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1371] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1373] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [1375] = {.count = 1, .reusable = true}, SHIFT(530), - [1377] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1379] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [1381] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1383] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1385] = {.count = 1, .reusable = true}, SHIFT(532), - [1387] = {.count = 1, .reusable = true}, SHIFT(533), - [1389] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [1391] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [1393] = {.count = 1, .reusable = true}, SHIFT(536), - [1395] = {.count = 1, .reusable = true}, SHIFT(537), - [1397] = {.count = 1, .reusable = false}, SHIFT(537), - [1399] = {.count = 1, .reusable = false}, SHIFT(538), - [1401] = {.count = 1, .reusable = true}, SHIFT(539), - [1403] = {.count = 1, .reusable = false}, SHIFT(540), - [1405] = {.count = 1, .reusable = true}, SHIFT(541), - [1407] = {.count = 1, .reusable = true}, SHIFT(540), - [1409] = {.count = 1, .reusable = false}, SHIFT(542), - [1411] = {.count = 1, .reusable = true}, SHIFT(543), - [1413] = {.count = 1, .reusable = true}, SHIFT(544), - [1415] = {.count = 1, .reusable = false}, SHIFT(545), - [1417] = {.count = 1, .reusable = false}, SHIFT(546), - [1419] = {.count = 1, .reusable = true}, SHIFT(547), - [1421] = {.count = 1, .reusable = false}, SHIFT(548), - [1423] = {.count = 1, .reusable = true}, SHIFT(548), - [1425] = {.count = 1, .reusable = false}, SHIFT(549), - [1427] = {.count = 1, .reusable = false}, SHIFT(550), - [1429] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [1431] = {.count = 1, .reusable = true}, SHIFT(553), - [1433] = {.count = 1, .reusable = true}, SHIFT(554), - [1435] = {.count = 1, .reusable = false}, SHIFT(554), - [1437] = {.count = 1, .reusable = false}, SHIFT(555), - [1439] = {.count = 1, .reusable = false}, SHIFT(556), - [1441] = {.count = 1, .reusable = true}, SHIFT(557), - [1443] = {.count = 1, .reusable = true}, SHIFT(558), - [1445] = {.count = 1, .reusable = true}, SHIFT(556), - [1447] = {.count = 1, .reusable = false}, SHIFT(559), - [1449] = {.count = 1, .reusable = true}, SHIFT(560), - [1451] = {.count = 1, .reusable = true}, SHIFT(561), - [1453] = {.count = 1, .reusable = false}, SHIFT(562), - [1455] = {.count = 1, .reusable = false}, SHIFT(563), - [1457] = {.count = 1, .reusable = true}, SHIFT(564), - [1459] = {.count = 1, .reusable = false}, SHIFT(565), - [1461] = {.count = 1, .reusable = true}, SHIFT(565), - [1463] = {.count = 1, .reusable = false}, SHIFT(566), - [1465] = {.count = 1, .reusable = false}, SHIFT(567), - [1467] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [1469] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [1471] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [1473] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [1475] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [1477] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [1479] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [1481] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [1483] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [1485] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [1487] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), - [1489] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), - [1491] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1493] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1495] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(32), - [1498] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [1500] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [1502] = {.count = 1, .reusable = true}, SHIFT(569), - [1504] = {.count = 1, .reusable = true}, SHIFT(570), - [1506] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [1508] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), - [1510] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), - [1512] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), - [1514] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), - [1516] = {.count = 1, .reusable = true}, SHIFT(572), - [1518] = {.count = 1, .reusable = false}, SHIFT(573), - [1520] = {.count = 1, .reusable = true}, SHIFT(574), - [1522] = {.count = 1, .reusable = false}, SHIFT(575), - [1524] = {.count = 1, .reusable = false}, SHIFT(576), - [1526] = {.count = 1, .reusable = false}, SHIFT(578), - [1528] = {.count = 1, .reusable = false}, SHIFT(581), - [1530] = {.count = 1, .reusable = true}, SHIFT(584), - [1532] = {.count = 1, .reusable = true}, SHIFT(585), - [1534] = {.count = 1, .reusable = true}, SHIFT(586), - [1536] = {.count = 1, .reusable = false}, SHIFT(587), - [1538] = {.count = 1, .reusable = true}, SHIFT(588), - [1540] = {.count = 1, .reusable = false}, SHIFT(589), - [1542] = {.count = 1, .reusable = false}, SHIFT(590), - [1544] = {.count = 1, .reusable = false}, SHIFT(591), - [1546] = {.count = 1, .reusable = true}, SHIFT(594), - [1548] = {.count = 1, .reusable = true}, SHIFT(600), - [1550] = {.count = 1, .reusable = true}, SHIFT(601), - [1552] = {.count = 1, .reusable = true}, SHIFT(602), - [1554] = {.count = 1, .reusable = false}, SHIFT(602), - [1556] = {.count = 1, .reusable = true}, SHIFT(603), - [1558] = {.count = 1, .reusable = true}, SHIFT(604), - [1560] = {.count = 1, .reusable = true}, SHIFT(605), - [1562] = {.count = 1, .reusable = true}, SHIFT(606), - [1564] = {.count = 1, .reusable = true}, SHIFT(607), - [1566] = {.count = 1, .reusable = true}, SHIFT(608), - [1568] = {.count = 1, .reusable = true}, SHIFT(610), - [1570] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [1572] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), - [1574] = {.count = 1, .reusable = true}, SHIFT(614), - [1576] = {.count = 1, .reusable = false}, SHIFT(616), - [1578] = {.count = 1, .reusable = true}, SHIFT(617), - [1580] = {.count = 1, .reusable = true}, SHIFT(620), - [1582] = {.count = 1, .reusable = false}, SHIFT(621), - [1584] = {.count = 1, .reusable = false}, SHIFT(622), - [1586] = {.count = 1, .reusable = false}, SHIFT(623), - [1588] = {.count = 1, .reusable = false}, SHIFT(624), - [1590] = {.count = 1, .reusable = true}, SHIFT(626), - [1592] = {.count = 1, .reusable = false}, SHIFT(628), - [1594] = {.count = 1, .reusable = true}, SHIFT(630), - [1596] = {.count = 1, .reusable = true}, SHIFT(631), - [1598] = {.count = 1, .reusable = true}, SHIFT(632), - [1600] = {.count = 1, .reusable = false}, SHIFT(632), - [1602] = {.count = 1, .reusable = true}, SHIFT(633), - [1604] = {.count = 1, .reusable = true}, SHIFT(634), - [1606] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), - [1608] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), - [1610] = {.count = 1, .reusable = true}, SHIFT(636), - [1612] = {.count = 1, .reusable = true}, SHIFT(639), - [1614] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(156), - [1617] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(157), - [1620] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(158), - [1623] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [1625] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(160), - [1628] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(163), - [1631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(164), - [1634] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(165), - [1637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(166), - [1640] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(167), - [1643] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(168), - [1646] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(169), - [1649] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(170), - [1652] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(171), - [1655] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(172), - [1658] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(173), - [1661] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(174), - [1664] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(175), - [1667] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(176), - [1670] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(180), - [1673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(180), - [1676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(177), - [1679] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), - [1681] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), - [1683] = {.count = 1, .reusable = true}, SHIFT(640), - [1685] = {.count = 1, .reusable = true}, SHIFT(642), - [1687] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), - [1689] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [1691] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [1693] = {.count = 1, .reusable = true}, SHIFT(644), - [1695] = {.count = 1, .reusable = true}, SHIFT(645), - [1697] = {.count = 1, .reusable = true}, SHIFT(646), - [1699] = {.count = 1, .reusable = false}, SHIFT(646), - [1701] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [1703] = {.count = 1, .reusable = true}, SHIFT(648), - [1705] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [1707] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [1709] = {.count = 1, .reusable = true}, SHIFT(649), - [1711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(413), - [1714] = {.count = 1, .reusable = true}, SHIFT(654), - [1716] = {.count = 1, .reusable = true}, SHIFT(655), - [1718] = {.count = 1, .reusable = false}, SHIFT(656), - [1720] = {.count = 1, .reusable = true}, SHIFT(657), - [1722] = {.count = 1, .reusable = true}, SHIFT(658), - [1724] = {.count = 1, .reusable = false}, SHIFT(658), - [1726] = {.count = 1, .reusable = true}, SHIFT(659), - [1728] = {.count = 1, .reusable = true}, SHIFT(660), - [1730] = {.count = 1, .reusable = true}, SHIFT(661), - [1732] = {.count = 1, .reusable = true}, SHIFT(662), - [1734] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [1736] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [1738] = {.count = 1, .reusable = true}, SHIFT(664), - [1740] = {.count = 1, .reusable = true}, SHIFT(665), - [1742] = {.count = 1, .reusable = true}, SHIFT(666), - [1744] = {.count = 1, .reusable = true}, SHIFT(668), - [1746] = {.count = 1, .reusable = false}, SHIFT(670), - [1748] = {.count = 1, .reusable = false}, SHIFT(671), - [1750] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [1752] = {.count = 1, .reusable = true}, SHIFT(674), - [1754] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1756] = {.count = 1, .reusable = true}, SHIFT(675), - [1758] = {.count = 1, .reusable = true}, SHIFT(676), - [1760] = {.count = 1, .reusable = false}, SHIFT(676), - [1762] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [1764] = {.count = 1, .reusable = true}, SHIFT(679), - [1766] = {.count = 1, .reusable = true}, SHIFT(680), - [1768] = {.count = 1, .reusable = true}, SHIFT(681), - [1770] = {.count = 1, .reusable = true}, SHIFT(682), - [1772] = {.count = 1, .reusable = true}, SHIFT(683), - [1774] = {.count = 1, .reusable = true}, SHIFT(684), - [1776] = {.count = 1, .reusable = true}, SHIFT(685), - [1778] = {.count = 1, .reusable = true}, SHIFT(686), - [1780] = {.count = 1, .reusable = false}, SHIFT(687), - [1782] = {.count = 1, .reusable = true}, SHIFT(687), - [1784] = {.count = 1, .reusable = false}, SHIFT(688), - [1786] = {.count = 1, .reusable = true}, SHIFT(689), - [1788] = {.count = 1, .reusable = true}, SHIFT(690), - [1790] = {.count = 1, .reusable = false}, SHIFT(690), - [1792] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [1794] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [1796] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [1798] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [1800] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [1802] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [1804] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [1806] = {.count = 1, .reusable = true}, SHIFT(694), - [1808] = {.count = 1, .reusable = false}, SHIFT(694), - [1810] = {.count = 1, .reusable = true}, SHIFT(695), - [1812] = {.count = 1, .reusable = true}, SHIFT(697), - [1814] = {.count = 1, .reusable = true}, SHIFT(699), - [1816] = {.count = 1, .reusable = true}, SHIFT(700), - [1818] = {.count = 1, .reusable = true}, SHIFT(701), - [1820] = {.count = 1, .reusable = true}, SHIFT(704), - [1822] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [1824] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [1826] = {.count = 1, .reusable = true}, SHIFT(707), - [1828] = {.count = 1, .reusable = false}, SHIFT(466), - [1830] = {.count = 1, .reusable = true}, SHIFT(711), - [1832] = {.count = 1, .reusable = false}, SHIFT(711), - [1834] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 6), - [1836] = {.count = 1, .reusable = true}, SHIFT(712), - [1838] = {.count = 1, .reusable = true}, SHIFT(713), - [1840] = {.count = 1, .reusable = true}, SHIFT(714), - [1842] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [1844] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [1846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(237), - [1849] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(238), - [1852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), - [1855] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), - [1860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(244), - [1863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(241), - [1866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), - [1869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(16), - [1872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), - [1875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(50), - [1878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(473), - [1881] = {.count = 1, .reusable = true}, SHIFT(721), - [1883] = {.count = 1, .reusable = true}, SHIFT(722), - [1885] = {.count = 1, .reusable = false}, SHIFT(722), - [1887] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), - [1889] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), - [1891] = {.count = 1, .reusable = true}, SHIFT(725), - [1893] = {.count = 1, .reusable = false}, SHIFT(725), - [1895] = {.count = 1, .reusable = true}, SHIFT(726), - [1897] = {.count = 1, .reusable = true}, SHIFT(728), - [1899] = {.count = 1, .reusable = true}, SHIFT(729), - [1901] = {.count = 1, .reusable = true}, SHIFT(730), - [1903] = {.count = 1, .reusable = true}, SHIFT(734), - [1905] = {.count = 1, .reusable = true}, SHIFT(735), - [1907] = {.count = 1, .reusable = true}, SHIFT(736), - [1909] = {.count = 1, .reusable = true}, SHIFT(737), - [1911] = {.count = 1, .reusable = true}, SHIFT(738), - [1913] = {.count = 1, .reusable = false}, SHIFT(738), - [1915] = {.count = 1, .reusable = true}, SHIFT(739), - [1917] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), - [1919] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), - [1921] = {.count = 1, .reusable = true}, SHIFT(740), - [1923] = {.count = 1, .reusable = true}, SHIFT(741), - [1925] = {.count = 1, .reusable = false}, SHIFT(741), - [1927] = {.count = 1, .reusable = true}, SHIFT(742), - [1929] = {.count = 1, .reusable = true}, SHIFT(744), - [1931] = {.count = 1, .reusable = false}, SHIFT(744), - [1933] = {.count = 1, .reusable = true}, SHIFT(745), - [1935] = {.count = 1, .reusable = true}, SHIFT(746), - [1937] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [1939] = {.count = 1, .reusable = false}, SHIFT(12), - [1941] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [1943] = {.count = 1, .reusable = false}, SHIFT(27), - [1945] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [1947] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [1949] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), - [1951] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), - [1953] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1955] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [1957] = {.count = 1, .reusable = true}, SHIFT(747), - [1959] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [1961] = {.count = 1, .reusable = true}, SHIFT(748), - [1963] = {.count = 1, .reusable = true}, SHIFT(749), - [1965] = {.count = 1, .reusable = false}, SHIFT(749), - [1967] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [1969] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [1971] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [1973] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(296), - [1976] = {.count = 1, .reusable = true}, SHIFT(750), - [1978] = {.count = 1, .reusable = false}, SHIFT(750), - [1980] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [1982] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [1984] = {.count = 1, .reusable = true}, SHIFT(751), - [1986] = {.count = 1, .reusable = true}, SHIFT(753), - [1988] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [1990] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [1992] = {.count = 1, .reusable = true}, SHIFT(755), - [1994] = {.count = 1, .reusable = false}, SHIFT(755), - [1996] = {.count = 1, .reusable = true}, SHIFT(756), - [1998] = {.count = 1, .reusable = false}, SHIFT(756), - [2000] = {.count = 1, .reusable = true}, SHIFT(757), - [2002] = {.count = 1, .reusable = false}, SHIFT(757), - [2004] = {.count = 1, .reusable = true}, SHIFT(758), - [2006] = {.count = 1, .reusable = false}, SHIFT(758), - [2008] = {.count = 1, .reusable = true}, SHIFT(759), - [2010] = {.count = 1, .reusable = false}, SHIFT(759), - [2012] = {.count = 1, .reusable = true}, SHIFT(760), - [2014] = {.count = 1, .reusable = false}, SHIFT(760), - [2016] = {.count = 1, .reusable = true}, SHIFT(761), - [2018] = {.count = 1, .reusable = false}, SHIFT(761), - [2020] = {.count = 1, .reusable = true}, SHIFT(762), - [2022] = {.count = 1, .reusable = false}, SHIFT(762), - [2024] = {.count = 1, .reusable = true}, SHIFT(763), - [2026] = {.count = 1, .reusable = false}, SHIFT(763), - [2028] = {.count = 1, .reusable = true}, SHIFT(764), - [2030] = {.count = 1, .reusable = false}, SHIFT(764), - [2032] = {.count = 1, .reusable = true}, SHIFT(765), - [2034] = {.count = 1, .reusable = false}, SHIFT(765), - [2036] = {.count = 1, .reusable = true}, SHIFT(767), - [2038] = {.count = 1, .reusable = true}, SHIFT(769), - [2040] = {.count = 1, .reusable = false}, SHIFT(769), - [2042] = {.count = 1, .reusable = true}, SHIFT(770), - [2044] = {.count = 1, .reusable = false}, SHIFT(770), - [2046] = {.count = 1, .reusable = true}, SHIFT(771), - [2048] = {.count = 1, .reusable = false}, SHIFT(771), - [2050] = {.count = 1, .reusable = true}, SHIFT(772), - [2052] = {.count = 1, .reusable = false}, SHIFT(772), - [2054] = {.count = 1, .reusable = true}, SHIFT(773), - [2056] = {.count = 1, .reusable = false}, SHIFT(773), - [2058] = {.count = 1, .reusable = true}, SHIFT(774), - [2060] = {.count = 1, .reusable = false}, SHIFT(774), - [2062] = {.count = 1, .reusable = true}, SHIFT(775), - [2064] = {.count = 1, .reusable = false}, SHIFT(775), - [2066] = {.count = 1, .reusable = true}, SHIFT(776), - [2068] = {.count = 1, .reusable = false}, SHIFT(776), - [2070] = {.count = 1, .reusable = true}, SHIFT(777), - [2072] = {.count = 1, .reusable = false}, SHIFT(777), - [2074] = {.count = 1, .reusable = true}, SHIFT(778), - [2076] = {.count = 1, .reusable = false}, SHIFT(778), - [2078] = {.count = 1, .reusable = true}, SHIFT(779), - [2080] = {.count = 1, .reusable = false}, SHIFT(779), - [2082] = {.count = 1, .reusable = true}, SHIFT(780), - [2084] = {.count = 1, .reusable = false}, SHIFT(780), - [2086] = {.count = 1, .reusable = true}, SHIFT(782), - [2088] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [2090] = {.count = 1, .reusable = true}, SHIFT(783), - [2092] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), - [2094] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), - [2096] = {.count = 1, .reusable = false}, SHIFT(785), - [2098] = {.count = 1, .reusable = true}, SHIFT(786), - [2100] = {.count = 1, .reusable = false}, SHIFT(787), - [2102] = {.count = 1, .reusable = false}, SHIFT(788), - [2104] = {.count = 1, .reusable = true}, SHIFT(789), - [2106] = {.count = 1, .reusable = false}, SHIFT(789), - [2108] = {.count = 1, .reusable = true}, SHIFT(791), - [2110] = {.count = 1, .reusable = false}, SHIFT(791), - [2112] = {.count = 1, .reusable = false}, SHIFT(793), - [2114] = {.count = 1, .reusable = true}, SHIFT(794), - [2116] = {.count = 1, .reusable = false}, SHIFT(795), - [2118] = {.count = 1, .reusable = false}, SHIFT(796), - [2120] = {.count = 1, .reusable = false}, SHIFT(798), - [2122] = {.count = 1, .reusable = false}, SHIFT(801), - [2124] = {.count = 1, .reusable = true}, SHIFT(804), - [2126] = {.count = 1, .reusable = false}, SHIFT(806), - [2128] = {.count = 1, .reusable = true}, SHIFT(807), - [2130] = {.count = 1, .reusable = true}, SHIFT(810), - [2132] = {.count = 1, .reusable = false}, SHIFT(811), - [2134] = {.count = 1, .reusable = false}, SHIFT(812), - [2136] = {.count = 1, .reusable = false}, SHIFT(813), - [2138] = {.count = 1, .reusable = false}, SHIFT(814), - [2140] = {.count = 1, .reusable = true}, SHIFT(816), - [2142] = {.count = 1, .reusable = false}, SHIFT(818), - [2144] = {.count = 1, .reusable = true}, SHIFT(820), - [2146] = {.count = 1, .reusable = true}, SHIFT(821), - [2148] = {.count = 1, .reusable = true}, SHIFT(822), - [2150] = {.count = 1, .reusable = false}, SHIFT(822), - [2152] = {.count = 1, .reusable = true}, SHIFT(823), - [2154] = {.count = 1, .reusable = true}, SHIFT(824), - [2156] = {.count = 1, .reusable = true}, SHIFT(826), - [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(350), - [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(351), - [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(352), - [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(353), - [2170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(354), - [2173] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(355), - [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(356), - [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(357), - [2182] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(358), - [2185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(359), - [2188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(360), - [2191] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(361), - [2194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(362), - [2197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(363), - [2200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(364), - [2203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(365), - [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(366), - [2209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(367), - [2212] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(370), - [2215] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(370), - [2218] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(368), - [2221] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), - [2223] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), - [2225] = {.count = 1, .reusable = true}, SHIFT(830), - [2227] = {.count = 1, .reusable = true}, SHIFT(832), - [2229] = {.count = 1, .reusable = true}, SHIFT(836), - [2231] = {.count = 1, .reusable = true}, SHIFT(837), - [2233] = {.count = 1, .reusable = false}, SHIFT(838), - [2235] = {.count = 1, .reusable = true}, SHIFT(839), - [2237] = {.count = 1, .reusable = true}, SHIFT(841), - [2239] = {.count = 1, .reusable = true}, SHIFT(843), - [2241] = {.count = 1, .reusable = true}, SHIFT(844), - [2243] = {.count = 1, .reusable = false}, SHIFT(844), - [2245] = {.count = 1, .reusable = true}, SHIFT(845), - [2247] = {.count = 1, .reusable = true}, SHIFT(846), - [2249] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), - [2251] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), - [2253] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), - [2255] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), - [2257] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), - [2259] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), - [2261] = {.count = 1, .reusable = true}, SHIFT(847), - [2263] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [2265] = {.count = 1, .reusable = true}, SHIFT(848), - [2267] = {.count = 1, .reusable = true}, SHIFT(849), - [2269] = {.count = 1, .reusable = false}, SHIFT(849), - [2271] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [2273] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [2275] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [2277] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [2279] = {.count = 1, .reusable = true}, SHIFT(851), - [2281] = {.count = 1, .reusable = true}, SHIFT(852), - [2283] = {.count = 1, .reusable = false}, SHIFT(852), - [2285] = {.count = 1, .reusable = true}, SHIFT(853), - [2287] = {.count = 1, .reusable = true}, SHIFT(854), - [2289] = {.count = 1, .reusable = false}, SHIFT(854), - [2291] = {.count = 1, .reusable = true}, SHIFT(855), - [2293] = {.count = 1, .reusable = true}, SHIFT(856), - [2295] = {.count = 1, .reusable = false}, SHIFT(856), - [2297] = {.count = 1, .reusable = false}, SHIFT(62), - [2299] = {.count = 1, .reusable = false}, SHIFT(63), - [2301] = {.count = 1, .reusable = true}, SHIFT(857), - [2303] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [2305] = {.count = 1, .reusable = true}, SHIFT(858), - [2307] = {.count = 1, .reusable = true}, SHIFT(860), - [2309] = {.count = 1, .reusable = false}, SHIFT(861), - [2311] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [2313] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [2315] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(671), - [2318] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [2320] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), - [2323] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2325] = {.count = 1, .reusable = true}, SHIFT(865), - [2327] = {.count = 1, .reusable = true}, SHIFT(866), - [2329] = {.count = 1, .reusable = true}, SHIFT(867), - [2331] = {.count = 1, .reusable = false}, SHIFT(867), - [2333] = {.count = 1, .reusable = true}, SHIFT(868), - [2335] = {.count = 1, .reusable = false}, SHIFT(868), - [2337] = {.count = 1, .reusable = true}, SHIFT(869), - [2339] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [2341] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [2343] = {.count = 1, .reusable = true}, SHIFT(871), - [2345] = {.count = 1, .reusable = false}, SHIFT(871), - [2347] = {.count = 1, .reusable = true}, SHIFT(872), - [2349] = {.count = 1, .reusable = true}, SHIFT(873), - [2351] = {.count = 1, .reusable = false}, SHIFT(873), - [2353] = {.count = 1, .reusable = true}, SHIFT(874), - [2355] = {.count = 1, .reusable = true}, SHIFT(875), - [2357] = {.count = 1, .reusable = false}, SHIFT(876), - [2359] = {.count = 1, .reusable = false}, SHIFT(877), - [2361] = {.count = 1, .reusable = true}, SHIFT(878), - [2363] = {.count = 1, .reusable = true}, SHIFT(877), - [2365] = {.count = 1, .reusable = false}, SHIFT(879), - [2367] = {.count = 1, .reusable = true}, SHIFT(880), - [2369] = {.count = 1, .reusable = true}, SHIFT(881), - [2371] = {.count = 1, .reusable = false}, SHIFT(882), - [2373] = {.count = 1, .reusable = false}, SHIFT(883), - [2375] = {.count = 1, .reusable = true}, SHIFT(884), - [2377] = {.count = 1, .reusable = false}, SHIFT(885), - [2379] = {.count = 1, .reusable = true}, SHIFT(885), - [2381] = {.count = 1, .reusable = false}, SHIFT(886), - [2383] = {.count = 1, .reusable = false}, SHIFT(887), - [2385] = {.count = 1, .reusable = true}, SHIFT(890), - [2387] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [2389] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [2391] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [2393] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [2395] = {.count = 1, .reusable = true}, SHIFT(892), - [2397] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(893), - [2400] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [2402] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [2404] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2406] = {.count = 1, .reusable = false}, SHIFT(895), - [2408] = {.count = 1, .reusable = true}, SHIFT(896), - [2410] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [2412] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [2414] = {.count = 1, .reusable = true}, SHIFT(899), - [2416] = {.count = 1, .reusable = true}, SHIFT(902), - [2418] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), - [2420] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [2422] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [2424] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [2426] = {.count = 1, .reusable = true}, SHIFT(905), - [2428] = {.count = 1, .reusable = true}, SHIFT(906), - [2430] = {.count = 1, .reusable = true}, SHIFT(907), - [2432] = {.count = 1, .reusable = false}, SHIFT(907), - [2434] = {.count = 1, .reusable = true}, SHIFT(909), - [2436] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [2438] = {.count = 1, .reusable = false}, SHIFT(912), - [2440] = {.count = 1, .reusable = true}, SHIFT(913), - [2442] = {.count = 1, .reusable = true}, SHIFT(914), - [2444] = {.count = 1, .reusable = false}, SHIFT(914), - [2446] = {.count = 1, .reusable = true}, SHIFT(915), - [2448] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [2450] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [2452] = {.count = 1, .reusable = false}, SHIFT(916), - [2454] = {.count = 1, .reusable = false}, SHIFT(917), - [2456] = {.count = 1, .reusable = false}, SHIFT(918), - [2458] = {.count = 1, .reusable = false}, SHIFT(919), - [2460] = {.count = 1, .reusable = true}, SHIFT(921), - [2462] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [2464] = {.count = 1, .reusable = false}, SHIFT(922), - [2466] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [2468] = {.count = 1, .reusable = false}, SHIFT(923), - [2470] = {.count = 1, .reusable = false}, SHIFT(924), - [2472] = {.count = 1, .reusable = false}, SHIFT(925), - [2474] = {.count = 1, .reusable = true}, SHIFT(927), - [2476] = {.count = 1, .reusable = true}, SHIFT(928), - [2478] = {.count = 1, .reusable = false}, SHIFT(928), - [2480] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), - [2482] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), - [2484] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(7), - [2487] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), - [2490] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2492] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), - [2495] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(12), - [2498] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(481), - [2501] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(19), - [2504] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(482), - [2507] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(483), - [2510] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(484), - [2513] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(21), - [2516] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(485), - [2519] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(23), - [2522] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(24), - [2525] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(25), - [2528] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(26), - [2531] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(27), - [2534] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(28), - [2537] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(29), - [2540] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(29), - [2543] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), - [2546] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(37), - [2549] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(31), - [2552] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(32), - [2555] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(37), - [2558] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(486), - [2561] = {.count = 1, .reusable = true}, SHIFT(930), - [2563] = {.count = 1, .reusable = true}, SHIFT(931), - [2565] = {.count = 1, .reusable = false}, SHIFT(931), - [2567] = {.count = 1, .reusable = true}, SHIFT(932), - [2569] = {.count = 1, .reusable = true}, SHIFT(933), - [2571] = {.count = 1, .reusable = false}, SHIFT(933), - [2573] = {.count = 1, .reusable = true}, SHIFT(934), - [2575] = {.count = 1, .reusable = true}, SHIFT(935), - [2577] = {.count = 1, .reusable = false}, SHIFT(935), - [2579] = {.count = 1, .reusable = true}, SHIFT(937), - [2581] = {.count = 1, .reusable = true}, SHIFT(939), - [2583] = {.count = 1, .reusable = false}, SHIFT(939), - [2585] = {.count = 1, .reusable = true}, SHIFT(940), - [2587] = {.count = 1, .reusable = false}, SHIFT(98), - [2589] = {.count = 1, .reusable = false}, SHIFT(99), - [2591] = {.count = 1, .reusable = true}, SHIFT(941), - [2593] = {.count = 1, .reusable = false}, SHIFT(941), - [2595] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [2597] = {.count = 1, .reusable = true}, SHIFT(942), - [2599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2601] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [2603] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [2605] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(532), - [2608] = {.count = 1, .reusable = true}, SHIFT(943), - [2610] = {.count = 1, .reusable = true}, SHIFT(944), - [2612] = {.count = 1, .reusable = true}, SHIFT(945), - [2614] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [2616] = {.count = 1, .reusable = true}, SHIFT(946), - [2618] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [2620] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [2622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(569), - [2625] = {.count = 1, .reusable = true}, SHIFT(947), - [2627] = {.count = 1, .reusable = true}, SHIFT(948), - [2629] = {.count = 1, .reusable = true}, SHIFT(949), - [2631] = {.count = 1, .reusable = false}, SHIFT(950), - [2633] = {.count = 1, .reusable = true}, SHIFT(951), - [2635] = {.count = 1, .reusable = false}, SHIFT(952), - [2637] = {.count = 1, .reusable = false}, SHIFT(953), - [2639] = {.count = 1, .reusable = true}, SHIFT(954), - [2641] = {.count = 1, .reusable = false}, SHIFT(954), - [2643] = {.count = 1, .reusable = true}, SHIFT(956), - [2645] = {.count = 1, .reusable = false}, SHIFT(956), - [2647] = {.count = 1, .reusable = true}, SHIFT(958), - [2649] = {.count = 1, .reusable = true}, SHIFT(960), - [2651] = {.count = 1, .reusable = true}, SHIFT(964), - [2653] = {.count = 1, .reusable = true}, SHIFT(965), - [2655] = {.count = 1, .reusable = false}, SHIFT(966), - [2657] = {.count = 1, .reusable = true}, SHIFT(967), - [2659] = {.count = 1, .reusable = true}, SHIFT(969), - [2661] = {.count = 1, .reusable = true}, SHIFT(971), - [2663] = {.count = 1, .reusable = true}, SHIFT(972), - [2665] = {.count = 1, .reusable = false}, SHIFT(972), - [2667] = {.count = 1, .reusable = true}, SHIFT(973), - [2669] = {.count = 1, .reusable = true}, SHIFT(974), - [2671] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), - [2673] = {.count = 1, .reusable = true}, SHIFT(975), - [2675] = {.count = 1, .reusable = true}, SHIFT(976), - [2677] = {.count = 1, .reusable = true}, SHIFT(978), - [2679] = {.count = 1, .reusable = true}, SHIFT(979), - [2681] = {.count = 1, .reusable = false}, SHIFT(979), - [2683] = {.count = 1, .reusable = true}, SHIFT(981), - [2685] = {.count = 1, .reusable = true}, SHIFT(982), - [2687] = {.count = 1, .reusable = false}, SHIFT(982), - [2689] = {.count = 1, .reusable = true}, SHIFT(984), - [2691] = {.count = 1, .reusable = true}, SHIFT(985), - [2693] = {.count = 1, .reusable = false}, SHIFT(985), - [2695] = {.count = 1, .reusable = true}, SHIFT(986), - [2697] = {.count = 1, .reusable = true}, SHIFT(987), - [2699] = {.count = 1, .reusable = false}, SHIFT(987), - [2701] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [2703] = {.count = 1, .reusable = true}, SHIFT(988), - [2705] = {.count = 1, .reusable = false}, SHIFT(989), - [2707] = {.count = 1, .reusable = true}, SHIFT(990), - [2709] = {.count = 1, .reusable = true}, SHIFT(991), - [2711] = {.count = 1, .reusable = false}, SHIFT(991), - [2713] = {.count = 1, .reusable = true}, SHIFT(992), - [2715] = {.count = 1, .reusable = true}, SHIFT(993), - [2717] = {.count = 1, .reusable = true}, SHIFT(995), - [2719] = {.count = 1, .reusable = false}, SHIFT(995), - [2721] = {.count = 1, .reusable = true}, SHIFT(996), - [2723] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2725] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [2727] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(661), - [2730] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [2733] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(116), - [2737] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [2739] = {.count = 1, .reusable = true}, SHIFT(999), - [2741] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [2743] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [2745] = {.count = 1, .reusable = true}, SHIFT(1000), - [2747] = {.count = 1, .reusable = true}, SHIFT(1001), - [2749] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 7), - [2751] = {.count = 1, .reusable = true}, SHIFT(1003), - [2753] = {.count = 1, .reusable = true}, SHIFT(1004), - [2755] = {.count = 1, .reusable = false}, SHIFT(1004), - [2757] = {.count = 1, .reusable = true}, SHIFT(1006), - [2759] = {.count = 1, .reusable = false}, SHIFT(1006), - [2761] = {.count = 1, .reusable = true}, SHIFT(1007), - [2763] = {.count = 1, .reusable = false}, SHIFT(1007), - [2765] = {.count = 1, .reusable = true}, SHIFT(1008), - [2767] = {.count = 1, .reusable = false}, SHIFT(1008), - [2769] = {.count = 1, .reusable = true}, SHIFT(1009), - [2771] = {.count = 1, .reusable = false}, SHIFT(1009), - [2773] = {.count = 1, .reusable = true}, SHIFT(1010), - [2775] = {.count = 1, .reusable = false}, SHIFT(1010), - [2777] = {.count = 1, .reusable = true}, SHIFT(1011), - [2779] = {.count = 1, .reusable = false}, SHIFT(1011), - [2781] = {.count = 1, .reusable = true}, SHIFT(1012), - [2783] = {.count = 1, .reusable = false}, SHIFT(1012), - [2785] = {.count = 1, .reusable = true}, SHIFT(1013), - [2787] = {.count = 1, .reusable = false}, SHIFT(1013), - [2789] = {.count = 1, .reusable = true}, SHIFT(1014), - [2791] = {.count = 1, .reusable = false}, SHIFT(1014), - [2793] = {.count = 1, .reusable = true}, SHIFT(1015), - [2795] = {.count = 1, .reusable = false}, SHIFT(1015), - [2797] = {.count = 1, .reusable = true}, SHIFT(1016), - [2799] = {.count = 1, .reusable = false}, SHIFT(1016), - [2801] = {.count = 1, .reusable = true}, SHIFT(1017), - [2803] = {.count = 1, .reusable = true}, SHIFT(1020), - [2805] = {.count = 1, .reusable = false}, SHIFT(1020), - [2807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(684), - [2810] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2812] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(689), - [2815] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [2817] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [2819] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2821] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), - [2823] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [2825] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [2827] = {.count = 1, .reusable = true}, SHIFT(1025), - [2829] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [2831] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [2833] = {.count = 1, .reusable = true}, SHIFT(1026), - [2835] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), - [2837] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), - [2839] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [2841] = {.count = 1, .reusable = true}, SHIFT(1027), - [2843] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [2845] = {.count = 1, .reusable = true}, SHIFT(1028), - [2847] = {.count = 1, .reusable = true}, SHIFT(1029), - [2849] = {.count = 1, .reusable = false}, SHIFT(1029), - [2851] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [2853] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [2855] = {.count = 1, .reusable = true}, SHIFT(1030), - [2857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(712), - [2860] = {.count = 1, .reusable = true}, SHIFT(1031), - [2862] = {.count = 1, .reusable = true}, SHIFT(1032), - [2864] = {.count = 1, .reusable = false}, SHIFT(1032), - [2866] = {.count = 1, .reusable = true}, SHIFT(1033), - [2868] = {.count = 1, .reusable = true}, SHIFT(1034), - [2870] = {.count = 1, .reusable = false}, SHIFT(1034), - [2872] = {.count = 1, .reusable = true}, SHIFT(1037), - [2874] = {.count = 1, .reusable = true}, SHIFT(1038), - [2876] = {.count = 1, .reusable = false}, SHIFT(1039), - [2878] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [2880] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [2882] = {.count = 1, .reusable = true}, SHIFT(1043), - [2884] = {.count = 1, .reusable = true}, SHIFT(1044), - [2886] = {.count = 1, .reusable = true}, SHIFT(1046), - [2888] = {.count = 1, .reusable = true}, SHIFT(1047), - [2890] = {.count = 1, .reusable = false}, SHIFT(1047), - [2892] = {.count = 1, .reusable = true}, SHIFT(1048), - [2894] = {.count = 1, .reusable = true}, SHIFT(1049), - [2896] = {.count = 1, .reusable = true}, SHIFT(1050), - [2898] = {.count = 1, .reusable = true}, SHIFT(1051), - [2900] = {.count = 1, .reusable = false}, SHIFT(1051), - [2902] = {.count = 1, .reusable = true}, SHIFT(1052), - [2904] = {.count = 1, .reusable = true}, SHIFT(1053), - [2906] = {.count = 1, .reusable = true}, SHIFT(1055), - [2908] = {.count = 1, .reusable = false}, SHIFT(1055), - [2910] = {.count = 1, .reusable = true}, SHIFT(1056), - [2912] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [2914] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [2916] = {.count = 1, .reusable = true}, SHIFT(1058), - [2918] = {.count = 1, .reusable = true}, SHIFT(1060), - [2920] = {.count = 1, .reusable = false}, SHIFT(1060), - [2922] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [2924] = {.count = 1, .reusable = false}, SHIFT(311), - [2926] = {.count = 1, .reusable = false}, SHIFT(312), - [2928] = {.count = 1, .reusable = true}, SHIFT(1061), - [2930] = {.count = 1, .reusable = false}, SHIFT(1061), - [2932] = {.count = 1, .reusable = false}, SHIFT(320), - [2934] = {.count = 1, .reusable = false}, SHIFT(321), - [2936] = {.count = 1, .reusable = true}, SHIFT(1062), - [2938] = {.count = 1, .reusable = false}, SHIFT(1062), - [2940] = {.count = 1, .reusable = true}, SHIFT(1063), - [2942] = {.count = 1, .reusable = true}, SHIFT(1064), - [2944] = {.count = 1, .reusable = true}, SHIFT(1065), - [2946] = {.count = 1, .reusable = true}, SHIFT(1066), - [2948] = {.count = 1, .reusable = true}, SHIFT(1067), - [2950] = {.count = 1, .reusable = true}, SHIFT(1069), - [2952] = {.count = 1, .reusable = true}, SHIFT(1070), - [2954] = {.count = 1, .reusable = false}, SHIFT(1070), - [2956] = {.count = 1, .reusable = true}, SHIFT(1072), - [2958] = {.count = 1, .reusable = true}, SHIFT(1073), - [2960] = {.count = 1, .reusable = false}, SHIFT(1073), - [2962] = {.count = 1, .reusable = true}, SHIFT(1075), - [2964] = {.count = 1, .reusable = true}, SHIFT(1076), - [2966] = {.count = 1, .reusable = false}, SHIFT(1076), - [2968] = {.count = 1, .reusable = true}, SHIFT(1077), - [2970] = {.count = 1, .reusable = true}, SHIFT(1078), - [2972] = {.count = 1, .reusable = false}, SHIFT(1078), - [2974] = {.count = 1, .reusable = false}, SHIFT(1079), - [2976] = {.count = 1, .reusable = true}, SHIFT(1080), - [2978] = {.count = 1, .reusable = true}, SHIFT(1081), - [2980] = {.count = 1, .reusable = false}, SHIFT(1081), - [2982] = {.count = 1, .reusable = true}, SHIFT(1082), - [2984] = {.count = 1, .reusable = true}, SHIFT(1083), - [2986] = {.count = 1, .reusable = true}, SHIFT(1085), - [2988] = {.count = 1, .reusable = true}, SHIFT(1087), - [2990] = {.count = 1, .reusable = false}, SHIFT(1087), - [2992] = {.count = 1, .reusable = true}, SHIFT(1088), - [2994] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [2996] = {.count = 1, .reusable = true}, SHIFT(1089), - [2998] = {.count = 1, .reusable = true}, SHIFT(1090), - [3000] = {.count = 1, .reusable = false}, SHIFT(1090), - [3002] = {.count = 1, .reusable = true}, SHIFT(1091), - [3004] = {.count = 1, .reusable = true}, SHIFT(1092), - [3006] = {.count = 1, .reusable = false}, SHIFT(1092), - [3008] = {.count = 1, .reusable = true}, SHIFT(1093), - [3010] = {.count = 1, .reusable = true}, SHIFT(1095), - [3012] = {.count = 1, .reusable = false}, SHIFT(1095), - [3014] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [3016] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [3018] = {.count = 1, .reusable = true}, SHIFT(1097), - [3020] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [3022] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [3024] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3026] = {.count = 1, .reusable = true}, SHIFT(1098), - [3028] = {.count = 1, .reusable = true}, SHIFT(1099), - [3030] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1100), - [3033] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [3035] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [3037] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [3039] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [3041] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [3043] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [3045] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [3047] = {.count = 1, .reusable = true}, SHIFT(1102), - [3049] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [3051] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [3053] = {.count = 1, .reusable = true}, SHIFT(1103), - [3055] = {.count = 1, .reusable = true}, SHIFT(1105), - [3057] = {.count = 1, .reusable = false}, SHIFT(1105), - [3059] = {.count = 1, .reusable = true}, SHIFT(1106), - [3061] = {.count = 1, .reusable = true}, SHIFT(1108), - [3063] = {.count = 1, .reusable = true}, SHIFT(1109), - [3065] = {.count = 1, .reusable = false}, SHIFT(1109), - [3067] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [3069] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [3071] = {.count = 1, .reusable = false}, SHIFT(1110), - [3073] = {.count = 1, .reusable = false}, SHIFT(1111), - [3075] = {.count = 1, .reusable = false}, SHIFT(1112), - [3077] = {.count = 1, .reusable = false}, SHIFT(1113), - [3079] = {.count = 1, .reusable = false}, SHIFT(1115), - [3081] = {.count = 1, .reusable = true}, SHIFT(1116), - [3083] = {.count = 1, .reusable = true}, SHIFT(1117), - [3085] = {.count = 1, .reusable = false}, SHIFT(1117), - [3087] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7), - [3090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), - [3093] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), - [3096] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), - [3099] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3101] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), - [3104] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(12), - [3107] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), - [3110] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(199), - [3113] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(197), - [3116] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), - [3119] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), - [3122] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), - [3125] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(922), - [3128] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(19), - [3131] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(923), - [3136] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), - [3139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(924), - [3142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), - [3145] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [3148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), - [3151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), - [3154] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), - [3157] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [3160] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [3163] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [3166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [3169] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), - [3172] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [3175] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), - [3178] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), - [3181] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(925), - [3184] = {.count = 1, .reusable = true}, SHIFT(1118), - [3186] = {.count = 1, .reusable = true}, SHIFT(1119), - [3188] = {.count = 1, .reusable = false}, SHIFT(1119), - [3190] = {.count = 1, .reusable = true}, SHIFT(1120), - [3192] = {.count = 1, .reusable = true}, SHIFT(1121), - [3194] = {.count = 1, .reusable = false}, SHIFT(1121), - [3196] = {.count = 1, .reusable = true}, SHIFT(1122), - [3198] = {.count = 1, .reusable = true}, SHIFT(1123), - [3200] = {.count = 1, .reusable = false}, SHIFT(1123), - [3202] = {.count = 1, .reusable = true}, SHIFT(1124), - [3204] = {.count = 1, .reusable = true}, SHIFT(1125), - [3206] = {.count = 1, .reusable = false}, SHIFT(1125), - [3208] = {.count = 1, .reusable = true}, SHIFT(1126), - [3210] = {.count = 1, .reusable = true}, SHIFT(1128), - [3212] = {.count = 1, .reusable = false}, SHIFT(1128), - [3214] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [3216] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [3218] = {.count = 1, .reusable = true}, SHIFT(1130), - [3220] = {.count = 1, .reusable = false}, SHIFT(1132), - [3222] = {.count = 1, .reusable = true}, SHIFT(1133), - [3224] = {.count = 1, .reusable = true}, SHIFT(1134), - [3226] = {.count = 1, .reusable = false}, SHIFT(1134), - [3228] = {.count = 1, .reusable = true}, SHIFT(1135), - [3230] = {.count = 1, .reusable = true}, SHIFT(1136), - [3232] = {.count = 1, .reusable = true}, SHIFT(1138), - [3234] = {.count = 1, .reusable = true}, SHIFT(1140), - [3236] = {.count = 1, .reusable = false}, SHIFT(1140), - [3238] = {.count = 1, .reusable = true}, SHIFT(1141), - [3240] = {.count = 1, .reusable = true}, SHIFT(1142), - [3242] = {.count = 1, .reusable = true}, SHIFT(1143), - [3244] = {.count = 1, .reusable = false}, SHIFT(1143), - [3246] = {.count = 1, .reusable = true}, SHIFT(1144), - [3248] = {.count = 1, .reusable = true}, SHIFT(1145), - [3250] = {.count = 1, .reusable = false}, SHIFT(1145), - [3252] = {.count = 1, .reusable = true}, SHIFT(1147), - [3254] = {.count = 1, .reusable = true}, SHIFT(1149), - [3256] = {.count = 1, .reusable = false}, SHIFT(1149), - [3258] = {.count = 1, .reusable = true}, SHIFT(1150), - [3260] = {.count = 1, .reusable = true}, SHIFT(1152), - [3262] = {.count = 1, .reusable = false}, SHIFT(1152), - [3264] = {.count = 1, .reusable = true}, SHIFT(1153), - [3266] = {.count = 1, .reusable = true}, SHIFT(1154), - [3268] = {.count = 1, .reusable = false}, SHIFT(683), - [3270] = {.count = 1, .reusable = false}, SHIFT(685), - [3272] = {.count = 1, .reusable = true}, SHIFT(1156), - [3274] = {.count = 1, .reusable = false}, SHIFT(1156), - [3276] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [3278] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [3280] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), - [3282] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [3284] = {.count = 1, .reusable = true}, SHIFT(1157), - [3286] = {.count = 1, .reusable = true}, SHIFT(1159), - [3288] = {.count = 1, .reusable = false}, SHIFT(1159), - [3290] = {.count = 1, .reusable = false}, SHIFT(1160), - [3292] = {.count = 1, .reusable = true}, SHIFT(1161), - [3294] = {.count = 1, .reusable = true}, SHIFT(1162), - [3296] = {.count = 1, .reusable = false}, SHIFT(1162), - [3298] = {.count = 1, .reusable = true}, SHIFT(1163), - [3300] = {.count = 1, .reusable = true}, SHIFT(1166), - [3302] = {.count = 1, .reusable = true}, SHIFT(1167), - [3304] = {.count = 1, .reusable = false}, SHIFT(1168), - [3306] = {.count = 1, .reusable = true}, SHIFT(1169), - [3308] = {.count = 1, .reusable = true}, SHIFT(1170), - [3310] = {.count = 1, .reusable = false}, SHIFT(1170), - [3312] = {.count = 1, .reusable = true}, SHIFT(1171), - [3314] = {.count = 1, .reusable = true}, SHIFT(1172), - [3316] = {.count = 1, .reusable = true}, SHIFT(1174), - [3318] = {.count = 1, .reusable = false}, SHIFT(1174), - [3320] = {.count = 1, .reusable = true}, SHIFT(1175), - [3322] = {.count = 1, .reusable = true}, SHIFT(1176), - [3324] = {.count = 1, .reusable = true}, SHIFT(1178), - [3326] = {.count = 1, .reusable = false}, SHIFT(1178), - [3328] = {.count = 1, .reusable = true}, SHIFT(1179), - [3330] = {.count = 1, .reusable = true}, SHIFT(1180), - [3332] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [3334] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [3336] = {.count = 1, .reusable = true}, SHIFT(1183), - [3338] = {.count = 1, .reusable = true}, SHIFT(1184), - [3340] = {.count = 1, .reusable = true}, SHIFT(1185), - [3342] = {.count = 1, .reusable = false}, SHIFT(1185), - [3344] = {.count = 1, .reusable = true}, SHIFT(1186), - [3346] = {.count = 1, .reusable = true}, SHIFT(1187), - [3348] = {.count = 1, .reusable = false}, SHIFT(1187), - [3350] = {.count = 1, .reusable = true}, SHIFT(1189), - [3352] = {.count = 1, .reusable = true}, SHIFT(1191), - [3354] = {.count = 1, .reusable = false}, SHIFT(1191), - [3356] = {.count = 1, .reusable = true}, SHIFT(1192), - [3358] = {.count = 1, .reusable = true}, SHIFT(1194), - [3360] = {.count = 1, .reusable = false}, SHIFT(1194), - [3362] = {.count = 1, .reusable = true}, SHIFT(1195), - [3364] = {.count = 1, .reusable = true}, SHIFT(1197), - [3366] = {.count = 1, .reusable = true}, SHIFT(1199), - [3368] = {.count = 1, .reusable = true}, SHIFT(1201), - [3370] = {.count = 1, .reusable = false}, SHIFT(1201), - [3372] = {.count = 1, .reusable = true}, SHIFT(1202), - [3374] = {.count = 1, .reusable = true}, SHIFT(1203), - [3376] = {.count = 1, .reusable = true}, SHIFT(1205), - [3378] = {.count = 1, .reusable = true}, SHIFT(1206), - [3380] = {.count = 1, .reusable = false}, SHIFT(1206), - [3382] = {.count = 1, .reusable = true}, SHIFT(1207), - [3384] = {.count = 1, .reusable = true}, SHIFT(1208), - [3386] = {.count = 1, .reusable = false}, SHIFT(1208), - [3388] = {.count = 1, .reusable = true}, SHIFT(1210), - [3390] = {.count = 1, .reusable = true}, SHIFT(1211), - [3392] = {.count = 1, .reusable = false}, SHIFT(1211), - [3394] = {.count = 1, .reusable = true}, SHIFT(1212), - [3396] = {.count = 1, .reusable = true}, SHIFT(1213), - [3398] = {.count = 1, .reusable = false}, SHIFT(1213), - [3400] = {.count = 1, .reusable = true}, SHIFT(1214), - [3402] = {.count = 1, .reusable = true}, SHIFT(1215), - [3404] = {.count = 1, .reusable = false}, SHIFT(1215), - [3406] = {.count = 1, .reusable = true}, SHIFT(1216), - [3408] = {.count = 1, .reusable = true}, SHIFT(1218), - [3410] = {.count = 1, .reusable = false}, SHIFT(1218), - [3412] = {.count = 1, .reusable = true}, SHIFT(1219), - [3414] = {.count = 1, .reusable = true}, SHIFT(1221), - [3416] = {.count = 1, .reusable = false}, SHIFT(1221), - [3418] = {.count = 1, .reusable = true}, SHIFT(1222), - [3420] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [3422] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [3424] = {.count = 1, .reusable = true}, SHIFT(1224), - [3426] = {.count = 1, .reusable = true}, SHIFT(1226), - [3428] = {.count = 1, .reusable = false}, SHIFT(1226), - [3430] = {.count = 1, .reusable = true}, SHIFT(1227), - [3432] = {.count = 1, .reusable = true}, SHIFT(1229), - [3434] = {.count = 1, .reusable = true}, SHIFT(1231), - [3436] = {.count = 1, .reusable = true}, SHIFT(1233), - [3438] = {.count = 1, .reusable = false}, SHIFT(1233), - [3440] = {.count = 1, .reusable = true}, SHIFT(1235), - [3442] = {.count = 1, .reusable = true}, SHIFT(1236), - [3444] = {.count = 1, .reusable = true}, SHIFT(1238), - [3446] = {.count = 1, .reusable = true}, SHIFT(1239), - [3448] = {.count = 1, .reusable = true}, SHIFT(1241), - [3450] = {.count = 1, .reusable = false}, SHIFT(1241), - [3452] = {.count = 1, .reusable = true}, SHIFT(1242), - [3454] = {.count = 1, .reusable = false}, SHIFT(1243), - [3456] = {.count = 1, .reusable = true}, SHIFT(1244), - [3458] = {.count = 1, .reusable = true}, SHIFT(1245), - [3460] = {.count = 1, .reusable = false}, SHIFT(1245), - [3462] = {.count = 1, .reusable = true}, SHIFT(1246), - [3464] = {.count = 1, .reusable = true}, SHIFT(1247), - [3466] = {.count = 1, .reusable = true}, SHIFT(1249), - [3468] = {.count = 1, .reusable = false}, SHIFT(1249), - [3470] = {.count = 1, .reusable = true}, SHIFT(1250), - [3472] = {.count = 1, .reusable = true}, SHIFT(1251), - [3474] = {.count = 1, .reusable = true}, SHIFT(1253), - [3476] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [3478] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [3480] = {.count = 1, .reusable = true}, SHIFT(1255), - [3482] = {.count = 1, .reusable = true}, SHIFT(1257), - [3484] = {.count = 1, .reusable = false}, SHIFT(1257), - [3486] = {.count = 1, .reusable = true}, SHIFT(1259), - [3488] = {.count = 1, .reusable = true}, SHIFT(1260), - [3490] = {.count = 1, .reusable = true}, SHIFT(1263), - [3492] = {.count = 1, .reusable = true}, SHIFT(1264), - [3494] = {.count = 1, .reusable = true}, SHIFT(1266), - [3496] = {.count = 1, .reusable = false}, SHIFT(1266), - [3498] = {.count = 1, .reusable = true}, SHIFT(1267), - [3500] = {.count = 1, .reusable = true}, SHIFT(1268), - [3502] = {.count = 1, .reusable = false}, SHIFT(1268), - [3504] = {.count = 1, .reusable = true}, SHIFT(1269), - [3506] = {.count = 1, .reusable = true}, SHIFT(1270), - [3508] = {.count = 1, .reusable = false}, SHIFT(1270), - [3510] = {.count = 1, .reusable = true}, SHIFT(1271), - [3512] = {.count = 1, .reusable = true}, SHIFT(1273), - [3514] = {.count = 1, .reusable = false}, SHIFT(1273), - [3516] = {.count = 1, .reusable = true}, SHIFT(1274), - [3518] = {.count = 1, .reusable = true}, SHIFT(1275), - [3520] = {.count = 1, .reusable = true}, SHIFT(1276), - [3522] = {.count = 1, .reusable = true}, SHIFT(1279), - [3524] = {.count = 1, .reusable = true}, SHIFT(1280), - [3526] = {.count = 1, .reusable = true}, SHIFT(1282), - [3528] = {.count = 1, .reusable = true}, SHIFT(1284), - [3530] = {.count = 1, .reusable = false}, SHIFT(1284), - [3532] = {.count = 1, .reusable = true}, SHIFT(1285), - [3534] = {.count = 1, .reusable = true}, SHIFT(1286), - [3536] = {.count = 1, .reusable = true}, SHIFT(1288), - [3538] = {.count = 1, .reusable = true}, SHIFT(1289), - [3540] = {.count = 1, .reusable = true}, SHIFT(1290), - [3542] = {.count = 1, .reusable = true}, SHIFT(1292), - [3544] = {.count = 1, .reusable = false}, SHIFT(1292), - [3546] = {.count = 1, .reusable = true}, SHIFT(1293), - [3548] = {.count = 1, .reusable = true}, SHIFT(1294), - [3550] = {.count = 1, .reusable = true}, SHIFT(1296), + [1] = {.count = 0, .reusable = false}, + [2] = {.count = 1, .reusable = true}, RECOVER(), + [4] = {.count = 1, .reusable = false}, RECOVER(), + [6] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), + [8] = {.count = 1, .reusable = false}, SHIFT(2), + [10] = {.count = 1, .reusable = false}, SHIFT(3), + [12] = {.count = 1, .reusable = false}, SHIFT(4), + [14] = {.count = 1, .reusable = false}, SHIFT(5), + [16] = {.count = 1, .reusable = false}, SHIFT(6), + [18] = {.count = 1, .reusable = true}, SHIFT(7), + [20] = {.count = 1, .reusable = false}, SHIFT(8), + [22] = {.count = 1, .reusable = false}, SHIFT(9), + [24] = {.count = 1, .reusable = true}, SHIFT(10), + [26] = {.count = 1, .reusable = true}, SHIFT(11), + [28] = {.count = 1, .reusable = true}, SHIFT(12), + [30] = {.count = 1, .reusable = false}, SHIFT(13), + [32] = {.count = 1, .reusable = false}, SHIFT(14), + [34] = {.count = 1, .reusable = false}, SHIFT(42), + [36] = {.count = 1, .reusable = false}, SHIFT(36), + [38] = {.count = 1, .reusable = false}, SHIFT(15), + [40] = {.count = 1, .reusable = false}, SHIFT(16), + [42] = {.count = 1, .reusable = false}, SHIFT(17), + [44] = {.count = 1, .reusable = false}, SHIFT(18), + [46] = {.count = 1, .reusable = false}, SHIFT(19), + [48] = {.count = 1, .reusable = false}, SHIFT(20), + [50] = {.count = 1, .reusable = false}, SHIFT(21), + [52] = {.count = 1, .reusable = false}, SHIFT(22), + [54] = {.count = 1, .reusable = false}, SHIFT(23), + [56] = {.count = 1, .reusable = false}, SHIFT(24), + [58] = {.count = 1, .reusable = false}, SHIFT(25), + [60] = {.count = 1, .reusable = false}, SHIFT(26), + [62] = {.count = 1, .reusable = true}, SHIFT(27), + [64] = {.count = 1, .reusable = true}, SHIFT(28), + [66] = {.count = 1, .reusable = false}, SHIFT(29), + [68] = {.count = 1, .reusable = true}, SHIFT(29), + [70] = {.count = 1, .reusable = false}, SHIFT(30), + [72] = {.count = 1, .reusable = true}, SHIFT(37), + [74] = {.count = 1, .reusable = true}, SHIFT(31), + [76] = {.count = 1, .reusable = true}, SHIFT(32), + [78] = {.count = 1, .reusable = false}, SHIFT(37), + [80] = {.count = 1, .reusable = false}, SHIFT(33), + [82] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [84] = {.count = 1, .reusable = true}, SHIFT(43), + [86] = {.count = 1, .reusable = true}, SHIFT(44), + [88] = {.count = 1, .reusable = true}, SHIFT(45), + [90] = {.count = 1, .reusable = false}, SHIFT(46), + [92] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [94] = {.count = 1, .reusable = true}, SHIFT(47), + [96] = {.count = 1, .reusable = false}, SHIFT(48), + [98] = {.count = 1, .reusable = false}, SHIFT(49), + [100] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [102] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [104] = {.count = 1, .reusable = false}, SHIFT(53), + [106] = {.count = 1, .reusable = false}, SHIFT(51), + [108] = {.count = 1, .reusable = false}, SHIFT(50), + [110] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [112] = {.count = 1, .reusable = true}, SHIFT(55), + [114] = {.count = 1, .reusable = false}, SHIFT(56), + [116] = {.count = 1, .reusable = false}, SHIFT(57), + [118] = {.count = 1, .reusable = false}, SHIFT(58), + [120] = {.count = 1, .reusable = false}, SHIFT(59), + [122] = {.count = 1, .reusable = true}, SHIFT(61), + [124] = {.count = 1, .reusable = true}, SHIFT(62), + [126] = {.count = 1, .reusable = false}, SHIFT(74), + [128] = {.count = 1, .reusable = false}, SHIFT(68), + [130] = {.count = 1, .reusable = true}, SHIFT(63), + [132] = {.count = 1, .reusable = true}, SHIFT(64), + [134] = {.count = 1, .reusable = false}, SHIFT(65), + [136] = {.count = 1, .reusable = true}, SHIFT(65), + [138] = {.count = 1, .reusable = false}, SHIFT(66), + [140] = {.count = 1, .reusable = true}, SHIFT(69), + [142] = {.count = 1, .reusable = false}, SHIFT(69), + [144] = {.count = 1, .reusable = false}, SHIFT(67), + [146] = {.count = 1, .reusable = true}, SHIFT(75), + [148] = {.count = 1, .reusable = false}, SHIFT(75), + [150] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [152] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [154] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [156] = {.count = 1, .reusable = true}, SHIFT(76), + [158] = {.count = 1, .reusable = false}, SHIFT(77), + [160] = {.count = 1, .reusable = true}, SHIFT(79), + [162] = {.count = 1, .reusable = false}, SHIFT(80), + [164] = {.count = 1, .reusable = false}, SHIFT(82), + [166] = {.count = 1, .reusable = true}, SHIFT(84), + [168] = {.count = 1, .reusable = true}, SHIFT(86), + [170] = {.count = 1, .reusable = false}, SHIFT(89), + [172] = {.count = 1, .reusable = false}, SHIFT(90), + [174] = {.count = 1, .reusable = false}, SHIFT(91), + [176] = {.count = 1, .reusable = false}, SHIFT(92), + [178] = {.count = 1, .reusable = false}, SHIFT(93), + [180] = {.count = 1, .reusable = true}, SHIFT(95), + [182] = {.count = 1, .reusable = true}, SHIFT(96), + [184] = {.count = 1, .reusable = true}, SHIFT(97), + [186] = {.count = 1, .reusable = true}, SHIFT(98), + [188] = {.count = 1, .reusable = true}, SHIFT(99), + [190] = {.count = 1, .reusable = true}, SHIFT(100), + [192] = {.count = 1, .reusable = false}, SHIFT(101), + [194] = {.count = 1, .reusable = true}, SHIFT(101), + [196] = {.count = 1, .reusable = false}, SHIFT(102), + [198] = {.count = 1, .reusable = true}, SHIFT(103), + [200] = {.count = 1, .reusable = false}, SHIFT(103), + [202] = {.count = 1, .reusable = true}, SHIFT(105), + [204] = {.count = 1, .reusable = true}, SHIFT(106), + [206] = {.count = 1, .reusable = false}, SHIFT(107), + [208] = {.count = 1, .reusable = true}, SHIFT(108), + [210] = {.count = 1, .reusable = false}, SHIFT(108), + [212] = {.count = 1, .reusable = true}, SHIFT(109), + [214] = {.count = 1, .reusable = false}, SHIFT(109), + [216] = {.count = 1, .reusable = true}, SHIFT(110), + [218] = {.count = 1, .reusable = false}, SHIFT(110), + [220] = {.count = 1, .reusable = true}, SHIFT(111), + [222] = {.count = 1, .reusable = true}, SHIFT(112), + [224] = {.count = 1, .reusable = false}, SHIFT(112), + [226] = {.count = 1, .reusable = false}, SHIFT(113), + [228] = {.count = 1, .reusable = true}, SHIFT(113), + [230] = {.count = 1, .reusable = false}, SHIFT(114), + [232] = {.count = 1, .reusable = true}, SHIFT(115), + [234] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [236] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [239] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [241] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(116), + [245] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [248] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [250] = {.count = 1, .reusable = true}, SHIFT(117), + [252] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [254] = {.count = 1, .reusable = true}, SHIFT(118), + [256] = {.count = 1, .reusable = true}, SHIFT(119), + [258] = {.count = 1, .reusable = true}, SHIFT(120), + [260] = {.count = 1, .reusable = false}, SHIFT(121), + [262] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), + [264] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), + [266] = {.count = 1, .reusable = true}, SHIFT(124), + [268] = {.count = 1, .reusable = true}, SHIFT(125), + [270] = {.count = 1, .reusable = true}, SHIFT(126), + [272] = {.count = 1, .reusable = false}, SHIFT(127), + [274] = {.count = 1, .reusable = true}, SHIFT(128), + [276] = {.count = 1, .reusable = false}, SHIFT(129), + [278] = {.count = 1, .reusable = true}, SHIFT(130), + [280] = {.count = 1, .reusable = true}, SHIFT(129), + [282] = {.count = 1, .reusable = false}, SHIFT(131), + [284] = {.count = 1, .reusable = true}, SHIFT(132), + [286] = {.count = 1, .reusable = true}, SHIFT(133), + [288] = {.count = 1, .reusable = false}, SHIFT(134), + [290] = {.count = 1, .reusable = false}, SHIFT(135), + [292] = {.count = 1, .reusable = true}, SHIFT(136), + [294] = {.count = 1, .reusable = false}, SHIFT(137), + [296] = {.count = 1, .reusable = true}, SHIFT(137), + [298] = {.count = 1, .reusable = false}, SHIFT(138), + [300] = {.count = 1, .reusable = false}, SHIFT(139), + [302] = {.count = 1, .reusable = true}, SHIFT(140), + [304] = {.count = 1, .reusable = true}, SHIFT(141), + [306] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [308] = {.count = 1, .reusable = false}, SHIFT(145), + [310] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [312] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [314] = {.count = 1, .reusable = false}, SHIFT(149), + [316] = {.count = 1, .reusable = false}, SHIFT(147), + [318] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(148), + [321] = {.count = 1, .reusable = false}, SHIFT(150), + [323] = {.count = 1, .reusable = true}, SHIFT(151), + [325] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), + [327] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), + [329] = {.count = 1, .reusable = false}, SHIFT(152), + [331] = {.count = 1, .reusable = true}, SHIFT(153), + [333] = {.count = 1, .reusable = false}, SHIFT(154), + [335] = {.count = 1, .reusable = false}, SHIFT(156), + [337] = {.count = 1, .reusable = false}, SHIFT(157), + [339] = {.count = 1, .reusable = false}, SHIFT(158), + [341] = {.count = 1, .reusable = false}, SHIFT(159), + [343] = {.count = 1, .reusable = false}, SHIFT(160), + [345] = {.count = 1, .reusable = false}, SHIFT(161), + [347] = {.count = 1, .reusable = false}, SHIFT(162), + [349] = {.count = 1, .reusable = false}, SHIFT(163), + [351] = {.count = 1, .reusable = true}, SHIFT(164), + [353] = {.count = 1, .reusable = false}, SHIFT(165), + [355] = {.count = 1, .reusable = false}, SHIFT(166), + [357] = {.count = 1, .reusable = true}, SHIFT(167), + [359] = {.count = 1, .reusable = false}, SHIFT(168), + [361] = {.count = 1, .reusable = false}, SHIFT(169), + [363] = {.count = 1, .reusable = false}, SHIFT(170), + [365] = {.count = 1, .reusable = false}, SHIFT(171), + [367] = {.count = 1, .reusable = false}, SHIFT(172), + [369] = {.count = 1, .reusable = false}, SHIFT(173), + [371] = {.count = 1, .reusable = false}, SHIFT(174), + [373] = {.count = 1, .reusable = false}, SHIFT(175), + [375] = {.count = 1, .reusable = false}, SHIFT(176), + [377] = {.count = 1, .reusable = true}, SHIFT(180), + [379] = {.count = 1, .reusable = false}, SHIFT(180), + [381] = {.count = 1, .reusable = false}, SHIFT(177), + [383] = {.count = 1, .reusable = false}, SHIFT(183), + [385] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [387] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [389] = {.count = 1, .reusable = true}, SHIFT(186), + [391] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [393] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(116), + [396] = {.count = 1, .reusable = true}, SHIFT(187), + [398] = {.count = 1, .reusable = true}, SHIFT(188), + [400] = {.count = 1, .reusable = false}, SHIFT(189), + [402] = {.count = 1, .reusable = false}, SHIFT(191), + [404] = {.count = 1, .reusable = false}, SHIFT(193), + [406] = {.count = 1, .reusable = true}, SHIFT(194), + [408] = {.count = 1, .reusable = false}, SHIFT(199), + [410] = {.count = 1, .reusable = false}, SHIFT(197), + [412] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [414] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [416] = {.count = 1, .reusable = true}, SHIFT(202), + [418] = {.count = 1, .reusable = true}, SHIFT(203), + [420] = {.count = 1, .reusable = true}, SHIFT(204), + [422] = {.count = 1, .reusable = true}, SHIFT(207), + [424] = {.count = 1, .reusable = true}, SHIFT(208), + [426] = {.count = 1, .reusable = false}, SHIFT(208), + [428] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [430] = {.count = 1, .reusable = true}, SHIFT(209), + [432] = {.count = 1, .reusable = true}, SHIFT(210), + [434] = {.count = 1, .reusable = true}, SHIFT(211), + [436] = {.count = 1, .reusable = true}, SHIFT(214), + [438] = {.count = 1, .reusable = true}, SHIFT(215), + [440] = {.count = 1, .reusable = false}, SHIFT(216), + [442] = {.count = 1, .reusable = false}, SHIFT(217), + [444] = {.count = 1, .reusable = true}, SHIFT(218), + [446] = {.count = 1, .reusable = true}, SHIFT(217), + [448] = {.count = 1, .reusable = false}, SHIFT(219), + [450] = {.count = 1, .reusable = true}, SHIFT(220), + [452] = {.count = 1, .reusable = true}, SHIFT(221), + [454] = {.count = 1, .reusable = false}, SHIFT(222), + [456] = {.count = 1, .reusable = false}, SHIFT(223), + [458] = {.count = 1, .reusable = true}, SHIFT(224), + [460] = {.count = 1, .reusable = false}, SHIFT(225), + [462] = {.count = 1, .reusable = true}, SHIFT(225), + [464] = {.count = 1, .reusable = false}, SHIFT(226), + [466] = {.count = 1, .reusable = false}, SHIFT(227), + [468] = {.count = 1, .reusable = true}, SHIFT(228), + [470] = {.count = 1, .reusable = false}, SHIFT(230), + [472] = {.count = 1, .reusable = false}, SHIFT(231), + [474] = {.count = 1, .reusable = false}, SHIFT(148), + [476] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [478] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [480] = {.count = 1, .reusable = true}, SHIFT(232), + [482] = {.count = 1, .reusable = true}, SHIFT(233), + [484] = {.count = 1, .reusable = false}, SHIFT(234), + [486] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [488] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [490] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), + [492] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), + [494] = {.count = 1, .reusable = false}, SHIFT(237), + [496] = {.count = 1, .reusable = true}, SHIFT(238), + [498] = {.count = 1, .reusable = true}, SHIFT(239), + [500] = {.count = 1, .reusable = false}, SHIFT(244), + [502] = {.count = 1, .reusable = false}, SHIFT(241), + [504] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [506] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [508] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), + [510] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), + [512] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [514] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [516] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), + [518] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), + [520] = {.count = 1, .reusable = true}, SHIFT(247), + [522] = {.count = 1, .reusable = false}, SHIFT(247), + [524] = {.count = 1, .reusable = false}, SHIFT(249), + [526] = {.count = 1, .reusable = false}, SHIFT(250), + [528] = {.count = 1, .reusable = false}, SHIFT(251), + [530] = {.count = 1, .reusable = false}, SHIFT(252), + [532] = {.count = 1, .reusable = true}, SHIFT(254), + [534] = {.count = 1, .reusable = false}, SHIFT(256), + [536] = {.count = 1, .reusable = true}, SHIFT(261), + [538] = {.count = 1, .reusable = true}, SHIFT(262), + [540] = {.count = 1, .reusable = true}, SHIFT(263), + [542] = {.count = 1, .reusable = true}, SHIFT(264), + [544] = {.count = 1, .reusable = true}, SHIFT(267), + [546] = {.count = 1, .reusable = false}, SHIFT(267), + [548] = {.count = 1, .reusable = false}, SHIFT(265), + [550] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [552] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [554] = {.count = 1, .reusable = true}, SHIFT(269), + [556] = {.count = 1, .reusable = true}, SHIFT(270), + [558] = {.count = 1, .reusable = false}, SHIFT(270), + [560] = {.count = 1, .reusable = true}, SHIFT(271), + [562] = {.count = 1, .reusable = false}, SHIFT(272), + [564] = {.count = 1, .reusable = false}, SHIFT(273), + [566] = {.count = 1, .reusable = true}, SHIFT(274), + [568] = {.count = 1, .reusable = true}, SHIFT(273), + [570] = {.count = 1, .reusable = false}, SHIFT(275), + [572] = {.count = 1, .reusable = true}, SHIFT(276), + [574] = {.count = 1, .reusable = true}, SHIFT(277), + [576] = {.count = 1, .reusable = false}, SHIFT(278), + [578] = {.count = 1, .reusable = false}, SHIFT(279), + [580] = {.count = 1, .reusable = true}, SHIFT(280), + [582] = {.count = 1, .reusable = false}, SHIFT(281), + [584] = {.count = 1, .reusable = true}, SHIFT(281), + [586] = {.count = 1, .reusable = false}, SHIFT(282), + [588] = {.count = 1, .reusable = false}, SHIFT(283), + [590] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [592] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [594] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [596] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [598] = {.count = 1, .reusable = true}, SHIFT(285), + [600] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [602] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [604] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [606] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [608] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [610] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [612] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [614] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [616] = {.count = 1, .reusable = true}, SHIFT(287), + [618] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [620] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [622] = {.count = 1, .reusable = false}, SHIFT(288), + [624] = {.count = 1, .reusable = true}, SHIFT(289), + [626] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [628] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [630] = {.count = 1, .reusable = true}, SHIFT(292), + [632] = {.count = 1, .reusable = false}, SHIFT(293), + [634] = {.count = 1, .reusable = false}, SHIFT(294), + [636] = {.count = 1, .reusable = true}, SHIFT(296), + [638] = {.count = 1, .reusable = true}, SHIFT(297), + [640] = {.count = 1, .reusable = true}, SHIFT(298), + [642] = {.count = 1, .reusable = true}, SHIFT(299), + [644] = {.count = 1, .reusable = true}, SHIFT(300), + [646] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), + [648] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), + [650] = {.count = 1, .reusable = true}, SHIFT(305), + [652] = {.count = 1, .reusable = false}, SHIFT(305), + [654] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [656] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [658] = {.count = 1, .reusable = true}, SHIFT(307), + [660] = {.count = 1, .reusable = true}, SHIFT(308), + [662] = {.count = 1, .reusable = false}, SHIFT(308), + [664] = {.count = 1, .reusable = true}, SHIFT(309), + [666] = {.count = 1, .reusable = false}, SHIFT(309), + [668] = {.count = 1, .reusable = true}, SHIFT(310), + [670] = {.count = 1, .reusable = true}, SHIFT(311), + [672] = {.count = 1, .reusable = true}, SHIFT(312), + [674] = {.count = 1, .reusable = true}, SHIFT(313), + [676] = {.count = 1, .reusable = false}, SHIFT(314), + [678] = {.count = 1, .reusable = true}, SHIFT(314), + [680] = {.count = 1, .reusable = false}, SHIFT(315), + [682] = {.count = 1, .reusable = true}, SHIFT(316), + [684] = {.count = 1, .reusable = false}, SHIFT(316), + [686] = {.count = 1, .reusable = true}, SHIFT(318), + [688] = {.count = 1, .reusable = false}, SHIFT(318), + [690] = {.count = 1, .reusable = true}, SHIFT(319), + [692] = {.count = 1, .reusable = true}, SHIFT(320), + [694] = {.count = 1, .reusable = true}, SHIFT(321), + [696] = {.count = 1, .reusable = true}, SHIFT(322), + [698] = {.count = 1, .reusable = false}, SHIFT(323), + [700] = {.count = 1, .reusable = true}, SHIFT(323), + [702] = {.count = 1, .reusable = false}, SHIFT(324), + [704] = {.count = 1, .reusable = true}, SHIFT(325), + [706] = {.count = 1, .reusable = false}, SHIFT(325), + [708] = {.count = 1, .reusable = true}, SHIFT(327), + [710] = {.count = 1, .reusable = false}, SHIFT(327), + [712] = {.count = 1, .reusable = true}, SHIFT(328), + [714] = {.count = 1, .reusable = false}, SHIFT(328), + [716] = {.count = 1, .reusable = true}, SHIFT(329), + [718] = {.count = 1, .reusable = false}, SHIFT(329), + [720] = {.count = 1, .reusable = true}, SHIFT(330), + [722] = {.count = 1, .reusable = false}, SHIFT(330), + [724] = {.count = 1, .reusable = true}, SHIFT(331), + [726] = {.count = 1, .reusable = false}, SHIFT(331), + [728] = {.count = 1, .reusable = true}, SHIFT(332), + [730] = {.count = 1, .reusable = false}, SHIFT(332), + [732] = {.count = 1, .reusable = true}, SHIFT(333), + [734] = {.count = 1, .reusable = false}, SHIFT(333), + [736] = {.count = 1, .reusable = true}, SHIFT(334), + [738] = {.count = 1, .reusable = false}, SHIFT(334), + [740] = {.count = 1, .reusable = true}, SHIFT(335), + [742] = {.count = 1, .reusable = false}, SHIFT(335), + [744] = {.count = 1, .reusable = false}, SHIFT(336), + [746] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [748] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [750] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [752] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [756] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [762] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [765] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [768] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [771] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [774] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [777] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [783] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [786] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), + [798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), + [801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [807] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), + [810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), + [816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), + [819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), + [825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [840] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [846] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [852] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [855] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [858] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), + [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(13), + [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(14), + [873] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [875] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), + [877] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), + [879] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [881] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [883] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [885] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(149), + [890] = {.count = 1, .reusable = false}, SHIFT(339), + [892] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), + [894] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), + [896] = {.count = 1, .reusable = true}, SHIFT(340), + [898] = {.count = 1, .reusable = true}, SHIFT(341), + [900] = {.count = 1, .reusable = true}, SHIFT(342), + [902] = {.count = 1, .reusable = false}, SHIFT(343), + [904] = {.count = 1, .reusable = false}, SHIFT(344), + [906] = {.count = 1, .reusable = true}, SHIFT(345), + [908] = {.count = 1, .reusable = true}, SHIFT(346), + [910] = {.count = 1, .reusable = true}, SHIFT(347), + [912] = {.count = 1, .reusable = false}, SHIFT(348), + [914] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), + [916] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), + [918] = {.count = 1, .reusable = true}, SHIFT(349), + [920] = {.count = 1, .reusable = false}, SHIFT(350), + [922] = {.count = 1, .reusable = false}, SHIFT(351), + [924] = {.count = 1, .reusable = false}, SHIFT(352), + [926] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [928] = {.count = 1, .reusable = false}, SHIFT(353), + [930] = {.count = 1, .reusable = false}, SHIFT(354), + [932] = {.count = 1, .reusable = true}, SHIFT(355), + [934] = {.count = 1, .reusable = false}, SHIFT(356), + [936] = {.count = 1, .reusable = false}, SHIFT(357), + [938] = {.count = 1, .reusable = true}, SHIFT(358), + [940] = {.count = 1, .reusable = false}, SHIFT(359), + [942] = {.count = 1, .reusable = false}, SHIFT(360), + [944] = {.count = 1, .reusable = false}, SHIFT(361), + [946] = {.count = 1, .reusable = false}, SHIFT(362), + [948] = {.count = 1, .reusable = false}, SHIFT(363), + [950] = {.count = 1, .reusable = false}, SHIFT(364), + [952] = {.count = 1, .reusable = false}, SHIFT(365), + [954] = {.count = 1, .reusable = false}, SHIFT(366), + [956] = {.count = 1, .reusable = false}, SHIFT(367), + [958] = {.count = 1, .reusable = true}, SHIFT(370), + [960] = {.count = 1, .reusable = false}, SHIFT(370), + [962] = {.count = 1, .reusable = false}, SHIFT(368), + [964] = {.count = 1, .reusable = false}, SHIFT(373), + [966] = {.count = 1, .reusable = false}, SHIFT(374), + [968] = {.count = 1, .reusable = false}, SHIFT(375), + [970] = {.count = 1, .reusable = false}, SHIFT(376), + [972] = {.count = 1, .reusable = true}, SHIFT(379), + [974] = {.count = 1, .reusable = true}, SHIFT(385), + [976] = {.count = 1, .reusable = true}, SHIFT(386), + [978] = {.count = 1, .reusable = true}, SHIFT(387), + [980] = {.count = 1, .reusable = false}, SHIFT(387), + [982] = {.count = 1, .reusable = true}, SHIFT(388), + [984] = {.count = 1, .reusable = true}, SHIFT(389), + [986] = {.count = 1, .reusable = false}, SHIFT(390), + [988] = {.count = 1, .reusable = true}, SHIFT(391), + [990] = {.count = 1, .reusable = true}, SHIFT(392), + [992] = {.count = 1, .reusable = true}, SHIFT(393), + [994] = {.count = 1, .reusable = false}, SHIFT(394), + [996] = {.count = 1, .reusable = true}, SHIFT(396), + [998] = {.count = 1, .reusable = false}, SHIFT(392), + [1000] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), + [1002] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), + [1004] = {.count = 1, .reusable = true}, SHIFT(399), + [1006] = {.count = 1, .reusable = false}, SHIFT(399), + [1008] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [1010] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [1012] = {.count = 1, .reusable = true}, SHIFT(401), + [1014] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), + [1016] = {.count = 1, .reusable = true}, SHIFT(405), + [1018] = {.count = 1, .reusable = true}, SHIFT(406), + [1020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), + [1023] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(193), + [1028] = {.count = 1, .reusable = true}, SHIFT(409), + [1030] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [1032] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [1034] = {.count = 1, .reusable = false}, SHIFT(412), + [1036] = {.count = 1, .reusable = false}, SHIFT(413), + [1038] = {.count = 1, .reusable = false}, SHIFT(414), + [1040] = {.count = 1, .reusable = false}, SHIFT(415), + [1042] = {.count = 1, .reusable = false}, SHIFT(416), + [1044] = {.count = 1, .reusable = false}, SHIFT(417), + [1046] = {.count = 1, .reusable = false}, SHIFT(419), + [1048] = {.count = 1, .reusable = true}, SHIFT(420), + [1050] = {.count = 1, .reusable = true}, SHIFT(421), + [1052] = {.count = 1, .reusable = false}, SHIFT(421), + [1054] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1056] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(56), + [1061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(57), + [1064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), + [1067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(59), + [1070] = {.count = 1, .reusable = true}, SHIFT(422), + [1072] = {.count = 1, .reusable = true}, SHIFT(424), + [1074] = {.count = 1, .reusable = true}, SHIFT(425), + [1076] = {.count = 1, .reusable = false}, SHIFT(430), + [1078] = {.count = 1, .reusable = false}, SHIFT(428), + [1080] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [1082] = {.count = 1, .reusable = true}, SHIFT(14), + [1084] = {.count = 1, .reusable = true}, SHIFT(433), + [1086] = {.count = 1, .reusable = true}, SHIFT(434), + [1088] = {.count = 1, .reusable = true}, SHIFT(435), + [1090] = {.count = 1, .reusable = false}, SHIFT(435), + [1092] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [1094] = {.count = 1, .reusable = true}, SHIFT(437), + [1096] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [1098] = {.count = 1, .reusable = true}, SHIFT(439), + [1100] = {.count = 1, .reusable = false}, SHIFT(439), + [1102] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1104] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1106] = {.count = 1, .reusable = true}, SHIFT(440), + [1108] = {.count = 1, .reusable = false}, SHIFT(440), + [1110] = {.count = 1, .reusable = true}, SHIFT(441), + [1112] = {.count = 1, .reusable = false}, SHIFT(441), + [1114] = {.count = 1, .reusable = true}, SHIFT(442), + [1116] = {.count = 1, .reusable = false}, SHIFT(442), + [1118] = {.count = 1, .reusable = true}, SHIFT(443), + [1120] = {.count = 1, .reusable = false}, SHIFT(443), + [1122] = {.count = 1, .reusable = true}, SHIFT(444), + [1124] = {.count = 1, .reusable = false}, SHIFT(444), + [1126] = {.count = 1, .reusable = true}, SHIFT(445), + [1128] = {.count = 1, .reusable = false}, SHIFT(445), + [1130] = {.count = 1, .reusable = true}, SHIFT(446), + [1132] = {.count = 1, .reusable = false}, SHIFT(446), + [1134] = {.count = 1, .reusable = true}, SHIFT(447), + [1136] = {.count = 1, .reusable = false}, SHIFT(447), + [1138] = {.count = 1, .reusable = true}, SHIFT(448), + [1140] = {.count = 1, .reusable = false}, SHIFT(448), + [1142] = {.count = 1, .reusable = true}, SHIFT(449), + [1144] = {.count = 1, .reusable = false}, SHIFT(449), + [1146] = {.count = 1, .reusable = true}, SHIFT(450), + [1148] = {.count = 1, .reusable = false}, SHIFT(450), + [1150] = {.count = 1, .reusable = true}, SHIFT(451), + [1152] = {.count = 1, .reusable = true}, SHIFT(452), + [1154] = {.count = 1, .reusable = false}, SHIFT(452), + [1156] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(231), + [1159] = {.count = 1, .reusable = true}, SHIFT(456), + [1161] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [1163] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [1165] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [1167] = {.count = 1, .reusable = true}, SHIFT(457), + [1169] = {.count = 1, .reusable = true}, SHIFT(458), + [1171] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [1173] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [1175] = {.count = 1, .reusable = false}, SHIFT(460), + [1177] = {.count = 1, .reusable = true}, SHIFT(461), + [1179] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [1181] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [1183] = {.count = 1, .reusable = true}, SHIFT(462), + [1185] = {.count = 1, .reusable = true}, SHIFT(463), + [1187] = {.count = 1, .reusable = true}, SHIFT(464), + [1189] = {.count = 1, .reusable = true}, SHIFT(465), + [1191] = {.count = 1, .reusable = false}, SHIFT(466), + [1193] = {.count = 1, .reusable = true}, SHIFT(470), + [1195] = {.count = 1, .reusable = false}, SHIFT(472), + [1197] = {.count = 1, .reusable = false}, SHIFT(473), + [1199] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [1201] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [1203] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [1205] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [1207] = {.count = 1, .reusable = true}, SHIFT(474), + [1209] = {.count = 1, .reusable = true}, SHIFT(477), + [1211] = {.count = 1, .reusable = true}, SHIFT(478), + [1213] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), + [1215] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), + [1217] = {.count = 1, .reusable = false}, SHIFT(479), + [1219] = {.count = 1, .reusable = true}, SHIFT(480), + [1221] = {.count = 1, .reusable = false}, SHIFT(481), + [1223] = {.count = 1, .reusable = false}, SHIFT(482), + [1225] = {.count = 1, .reusable = false}, SHIFT(483), + [1227] = {.count = 1, .reusable = false}, SHIFT(484), + [1229] = {.count = 1, .reusable = false}, SHIFT(485), + [1231] = {.count = 1, .reusable = false}, SHIFT(486), + [1233] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [1235] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [1237] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1239] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1241] = {.count = 1, .reusable = false}, SHIFT(488), + [1243] = {.count = 1, .reusable = false}, SHIFT(489), + [1245] = {.count = 1, .reusable = false}, SHIFT(490), + [1247] = {.count = 1, .reusable = false}, SHIFT(491), + [1249] = {.count = 1, .reusable = true}, SHIFT(493), + [1251] = {.count = 1, .reusable = true}, SHIFT(494), + [1253] = {.count = 1, .reusable = true}, SHIFT(495), + [1255] = {.count = 1, .reusable = false}, SHIFT(495), + [1257] = {.count = 1, .reusable = true}, SHIFT(497), + [1259] = {.count = 1, .reusable = true}, SHIFT(498), + [1261] = {.count = 1, .reusable = false}, SHIFT(498), + [1263] = {.count = 1, .reusable = true}, SHIFT(499), + [1265] = {.count = 1, .reusable = false}, SHIFT(500), + [1267] = {.count = 1, .reusable = true}, SHIFT(501), + [1269] = {.count = 1, .reusable = true}, SHIFT(502), + [1271] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [1273] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [1275] = {.count = 1, .reusable = true}, SHIFT(504), + [1277] = {.count = 1, .reusable = false}, SHIFT(504), + [1279] = {.count = 1, .reusable = true}, SHIFT(505), + [1281] = {.count = 1, .reusable = false}, SHIFT(505), + [1283] = {.count = 1, .reusable = true}, SHIFT(506), + [1285] = {.count = 1, .reusable = false}, SHIFT(506), + [1287] = {.count = 1, .reusable = true}, SHIFT(507), + [1289] = {.count = 1, .reusable = false}, SHIFT(507), + [1291] = {.count = 1, .reusable = true}, SHIFT(508), + [1293] = {.count = 1, .reusable = false}, SHIFT(508), + [1295] = {.count = 1, .reusable = true}, SHIFT(509), + [1297] = {.count = 1, .reusable = false}, SHIFT(509), + [1299] = {.count = 1, .reusable = true}, SHIFT(510), + [1301] = {.count = 1, .reusable = false}, SHIFT(510), + [1303] = {.count = 1, .reusable = true}, SHIFT(511), + [1305] = {.count = 1, .reusable = false}, SHIFT(511), + [1307] = {.count = 1, .reusable = true}, SHIFT(512), + [1309] = {.count = 1, .reusable = false}, SHIFT(512), + [1311] = {.count = 1, .reusable = true}, SHIFT(513), + [1313] = {.count = 1, .reusable = false}, SHIFT(513), + [1315] = {.count = 1, .reusable = true}, SHIFT(514), + [1317] = {.count = 1, .reusable = false}, SHIFT(514), + [1319] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), + [1321] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), + [1323] = {.count = 1, .reusable = true}, SHIFT(516), + [1325] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [1327] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [1329] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [1331] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [1333] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [1335] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(289), + [1338] = {.count = 1, .reusable = true}, SHIFT(517), + [1340] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), + [1342] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), + [1344] = {.count = 1, .reusable = true}, SHIFT(519), + [1346] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), + [1348] = {.count = 1, .reusable = false}, SHIFT(520), + [1350] = {.count = 1, .reusable = false}, SHIFT(522), + [1352] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [1354] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [1356] = {.count = 1, .reusable = true}, SHIFT(524), + [1358] = {.count = 1, .reusable = true}, SHIFT(525), + [1360] = {.count = 1, .reusable = true}, SHIFT(526), + [1362] = {.count = 1, .reusable = false}, SHIFT(526), + [1364] = {.count = 1, .reusable = true}, SHIFT(528), + [1366] = {.count = 1, .reusable = false}, SHIFT(528), + [1368] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1370] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1372] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [1374] = {.count = 1, .reusable = true}, SHIFT(530), + [1376] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1378] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [1380] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1382] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1384] = {.count = 1, .reusable = true}, SHIFT(532), + [1386] = {.count = 1, .reusable = true}, SHIFT(533), + [1388] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [1390] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [1392] = {.count = 1, .reusable = true}, SHIFT(536), + [1394] = {.count = 1, .reusable = true}, SHIFT(537), + [1396] = {.count = 1, .reusable = false}, SHIFT(537), + [1398] = {.count = 1, .reusable = false}, SHIFT(538), + [1400] = {.count = 1, .reusable = true}, SHIFT(539), + [1402] = {.count = 1, .reusable = false}, SHIFT(540), + [1404] = {.count = 1, .reusable = true}, SHIFT(541), + [1406] = {.count = 1, .reusable = true}, SHIFT(540), + [1408] = {.count = 1, .reusable = false}, SHIFT(542), + [1410] = {.count = 1, .reusable = true}, SHIFT(543), + [1412] = {.count = 1, .reusable = true}, SHIFT(544), + [1414] = {.count = 1, .reusable = false}, SHIFT(545), + [1416] = {.count = 1, .reusable = false}, SHIFT(546), + [1418] = {.count = 1, .reusable = true}, SHIFT(547), + [1420] = {.count = 1, .reusable = false}, SHIFT(548), + [1422] = {.count = 1, .reusable = true}, SHIFT(548), + [1424] = {.count = 1, .reusable = false}, SHIFT(549), + [1426] = {.count = 1, .reusable = false}, SHIFT(550), + [1428] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [1430] = {.count = 1, .reusable = true}, SHIFT(553), + [1432] = {.count = 1, .reusable = true}, SHIFT(554), + [1434] = {.count = 1, .reusable = false}, SHIFT(554), + [1436] = {.count = 1, .reusable = false}, SHIFT(555), + [1438] = {.count = 1, .reusable = false}, SHIFT(556), + [1440] = {.count = 1, .reusable = true}, SHIFT(557), + [1442] = {.count = 1, .reusable = true}, SHIFT(558), + [1444] = {.count = 1, .reusable = true}, SHIFT(556), + [1446] = {.count = 1, .reusable = false}, SHIFT(559), + [1448] = {.count = 1, .reusable = true}, SHIFT(560), + [1450] = {.count = 1, .reusable = true}, SHIFT(561), + [1452] = {.count = 1, .reusable = false}, SHIFT(562), + [1454] = {.count = 1, .reusable = false}, SHIFT(563), + [1456] = {.count = 1, .reusable = true}, SHIFT(564), + [1458] = {.count = 1, .reusable = false}, SHIFT(565), + [1460] = {.count = 1, .reusable = true}, SHIFT(565), + [1462] = {.count = 1, .reusable = false}, SHIFT(566), + [1464] = {.count = 1, .reusable = false}, SHIFT(567), + [1466] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [1468] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [1470] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [1472] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [1474] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [1476] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [1478] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [1480] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [1482] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [1484] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [1486] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), + [1488] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), + [1490] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1492] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1494] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(32), + [1497] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [1499] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [1501] = {.count = 1, .reusable = true}, SHIFT(569), + [1503] = {.count = 1, .reusable = true}, SHIFT(570), + [1505] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [1507] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), + [1509] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), + [1511] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), + [1513] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), + [1515] = {.count = 1, .reusable = true}, SHIFT(572), + [1517] = {.count = 1, .reusable = false}, SHIFT(573), + [1519] = {.count = 1, .reusable = true}, SHIFT(574), + [1521] = {.count = 1, .reusable = false}, SHIFT(575), + [1523] = {.count = 1, .reusable = false}, SHIFT(576), + [1525] = {.count = 1, .reusable = false}, SHIFT(578), + [1527] = {.count = 1, .reusable = false}, SHIFT(581), + [1529] = {.count = 1, .reusable = true}, SHIFT(584), + [1531] = {.count = 1, .reusable = true}, SHIFT(585), + [1533] = {.count = 1, .reusable = true}, SHIFT(586), + [1535] = {.count = 1, .reusable = false}, SHIFT(587), + [1537] = {.count = 1, .reusable = true}, SHIFT(588), + [1539] = {.count = 1, .reusable = false}, SHIFT(589), + [1541] = {.count = 1, .reusable = false}, SHIFT(590), + [1543] = {.count = 1, .reusable = false}, SHIFT(591), + [1545] = {.count = 1, .reusable = true}, SHIFT(594), + [1547] = {.count = 1, .reusable = true}, SHIFT(600), + [1549] = {.count = 1, .reusable = true}, SHIFT(601), + [1551] = {.count = 1, .reusable = true}, SHIFT(602), + [1553] = {.count = 1, .reusable = false}, SHIFT(602), + [1555] = {.count = 1, .reusable = true}, SHIFT(603), + [1557] = {.count = 1, .reusable = true}, SHIFT(604), + [1559] = {.count = 1, .reusable = false}, SHIFT(605), + [1561] = {.count = 1, .reusable = true}, SHIFT(606), + [1563] = {.count = 1, .reusable = true}, SHIFT(607), + [1565] = {.count = 1, .reusable = false}, SHIFT(608), + [1567] = {.count = 1, .reusable = true}, SHIFT(610), + [1569] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [1571] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), + [1573] = {.count = 1, .reusable = true}, SHIFT(614), + [1575] = {.count = 1, .reusable = false}, SHIFT(616), + [1577] = {.count = 1, .reusable = true}, SHIFT(617), + [1579] = {.count = 1, .reusable = true}, SHIFT(620), + [1581] = {.count = 1, .reusable = false}, SHIFT(621), + [1583] = {.count = 1, .reusable = false}, SHIFT(622), + [1585] = {.count = 1, .reusable = false}, SHIFT(623), + [1587] = {.count = 1, .reusable = false}, SHIFT(624), + [1589] = {.count = 1, .reusable = true}, SHIFT(626), + [1591] = {.count = 1, .reusable = false}, SHIFT(628), + [1593] = {.count = 1, .reusable = true}, SHIFT(630), + [1595] = {.count = 1, .reusable = true}, SHIFT(631), + [1597] = {.count = 1, .reusable = true}, SHIFT(632), + [1599] = {.count = 1, .reusable = false}, SHIFT(632), + [1601] = {.count = 1, .reusable = true}, SHIFT(633), + [1603] = {.count = 1, .reusable = true}, SHIFT(634), + [1605] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), + [1607] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), + [1609] = {.count = 1, .reusable = true}, SHIFT(636), + [1611] = {.count = 1, .reusable = true}, SHIFT(639), + [1613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(156), + [1616] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(157), + [1619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(158), + [1622] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [1624] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(160), + [1627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(163), + [1630] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(164), + [1633] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(165), + [1636] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(166), + [1639] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(167), + [1642] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(168), + [1645] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(169), + [1648] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(170), + [1651] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(171), + [1654] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(172), + [1657] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(173), + [1660] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(174), + [1663] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(175), + [1666] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(176), + [1669] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(180), + [1672] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(180), + [1675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(177), + [1678] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), + [1680] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), + [1682] = {.count = 1, .reusable = true}, SHIFT(640), + [1684] = {.count = 1, .reusable = true}, SHIFT(642), + [1686] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), + [1688] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [1690] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [1692] = {.count = 1, .reusable = true}, SHIFT(644), + [1694] = {.count = 1, .reusable = true}, SHIFT(645), + [1696] = {.count = 1, .reusable = true}, SHIFT(646), + [1698] = {.count = 1, .reusable = false}, SHIFT(646), + [1700] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [1702] = {.count = 1, .reusable = true}, SHIFT(648), + [1704] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [1706] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1708] = {.count = 1, .reusable = true}, SHIFT(649), + [1710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(413), + [1713] = {.count = 1, .reusable = true}, SHIFT(654), + [1715] = {.count = 1, .reusable = true}, SHIFT(655), + [1717] = {.count = 1, .reusable = false}, SHIFT(656), + [1719] = {.count = 1, .reusable = true}, SHIFT(657), + [1721] = {.count = 1, .reusable = true}, SHIFT(658), + [1723] = {.count = 1, .reusable = false}, SHIFT(658), + [1725] = {.count = 1, .reusable = true}, SHIFT(659), + [1727] = {.count = 1, .reusable = true}, SHIFT(660), + [1729] = {.count = 1, .reusable = true}, SHIFT(661), + [1731] = {.count = 1, .reusable = true}, SHIFT(662), + [1733] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [1735] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [1737] = {.count = 1, .reusable = true}, SHIFT(664), + [1739] = {.count = 1, .reusable = true}, SHIFT(665), + [1741] = {.count = 1, .reusable = false}, SHIFT(666), + [1743] = {.count = 1, .reusable = true}, SHIFT(668), + [1745] = {.count = 1, .reusable = false}, SHIFT(670), + [1747] = {.count = 1, .reusable = false}, SHIFT(671), + [1749] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [1751] = {.count = 1, .reusable = true}, SHIFT(674), + [1753] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1755] = {.count = 1, .reusable = true}, SHIFT(675), + [1757] = {.count = 1, .reusable = true}, SHIFT(676), + [1759] = {.count = 1, .reusable = false}, SHIFT(676), + [1761] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [1763] = {.count = 1, .reusable = true}, SHIFT(679), + [1765] = {.count = 1, .reusable = true}, SHIFT(680), + [1767] = {.count = 1, .reusable = true}, SHIFT(681), + [1769] = {.count = 1, .reusable = true}, SHIFT(682), + [1771] = {.count = 1, .reusable = true}, SHIFT(683), + [1773] = {.count = 1, .reusable = true}, SHIFT(684), + [1775] = {.count = 1, .reusable = true}, SHIFT(685), + [1777] = {.count = 1, .reusable = true}, SHIFT(686), + [1779] = {.count = 1, .reusable = false}, SHIFT(687), + [1781] = {.count = 1, .reusable = true}, SHIFT(687), + [1783] = {.count = 1, .reusable = false}, SHIFT(688), + [1785] = {.count = 1, .reusable = true}, SHIFT(689), + [1787] = {.count = 1, .reusable = true}, SHIFT(690), + [1789] = {.count = 1, .reusable = false}, SHIFT(690), + [1791] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [1793] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [1795] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [1797] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [1799] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [1801] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [1803] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [1805] = {.count = 1, .reusable = true}, SHIFT(694), + [1807] = {.count = 1, .reusable = false}, SHIFT(694), + [1809] = {.count = 1, .reusable = true}, SHIFT(695), + [1811] = {.count = 1, .reusable = true}, SHIFT(697), + [1813] = {.count = 1, .reusable = true}, SHIFT(699), + [1815] = {.count = 1, .reusable = true}, SHIFT(700), + [1817] = {.count = 1, .reusable = true}, SHIFT(701), + [1819] = {.count = 1, .reusable = true}, SHIFT(704), + [1821] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [1823] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [1825] = {.count = 1, .reusable = true}, SHIFT(707), + [1827] = {.count = 1, .reusable = true}, SHIFT(711), + [1829] = {.count = 1, .reusable = false}, SHIFT(711), + [1831] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 6), + [1833] = {.count = 1, .reusable = true}, SHIFT(712), + [1835] = {.count = 1, .reusable = true}, SHIFT(713), + [1837] = {.count = 1, .reusable = true}, SHIFT(714), + [1839] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [1841] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [1843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(237), + [1846] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(238), + [1849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), + [1852] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), + [1857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(244), + [1860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(241), + [1863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), + [1866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(16), + [1869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), + [1872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(50), + [1875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(473), + [1878] = {.count = 1, .reusable = true}, SHIFT(721), + [1880] = {.count = 1, .reusable = true}, SHIFT(722), + [1882] = {.count = 1, .reusable = false}, SHIFT(722), + [1884] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), + [1886] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), + [1888] = {.count = 1, .reusable = true}, SHIFT(725), + [1890] = {.count = 1, .reusable = false}, SHIFT(725), + [1892] = {.count = 1, .reusable = true}, SHIFT(726), + [1894] = {.count = 1, .reusable = true}, SHIFT(728), + [1896] = {.count = 1, .reusable = true}, SHIFT(729), + [1898] = {.count = 1, .reusable = true}, SHIFT(730), + [1900] = {.count = 1, .reusable = true}, SHIFT(734), + [1902] = {.count = 1, .reusable = true}, SHIFT(735), + [1904] = {.count = 1, .reusable = true}, SHIFT(736), + [1906] = {.count = 1, .reusable = true}, SHIFT(737), + [1908] = {.count = 1, .reusable = true}, SHIFT(738), + [1910] = {.count = 1, .reusable = false}, SHIFT(738), + [1912] = {.count = 1, .reusable = true}, SHIFT(739), + [1914] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [1916] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [1918] = {.count = 1, .reusable = true}, SHIFT(740), + [1920] = {.count = 1, .reusable = true}, SHIFT(741), + [1922] = {.count = 1, .reusable = false}, SHIFT(741), + [1924] = {.count = 1, .reusable = true}, SHIFT(742), + [1926] = {.count = 1, .reusable = true}, SHIFT(744), + [1928] = {.count = 1, .reusable = false}, SHIFT(744), + [1930] = {.count = 1, .reusable = true}, SHIFT(745), + [1932] = {.count = 1, .reusable = true}, SHIFT(746), + [1934] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [1936] = {.count = 1, .reusable = false}, SHIFT(12), + [1938] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [1940] = {.count = 1, .reusable = false}, SHIFT(27), + [1942] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [1944] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [1946] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), + [1948] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), + [1950] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1952] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [1954] = {.count = 1, .reusable = true}, SHIFT(747), + [1956] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [1958] = {.count = 1, .reusable = true}, SHIFT(748), + [1960] = {.count = 1, .reusable = true}, SHIFT(749), + [1962] = {.count = 1, .reusable = false}, SHIFT(749), + [1964] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [1966] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [1968] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [1970] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(296), + [1973] = {.count = 1, .reusable = true}, SHIFT(750), + [1975] = {.count = 1, .reusable = false}, SHIFT(750), + [1977] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [1979] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [1981] = {.count = 1, .reusable = true}, SHIFT(751), + [1983] = {.count = 1, .reusable = true}, SHIFT(753), + [1985] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [1987] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [1989] = {.count = 1, .reusable = true}, SHIFT(755), + [1991] = {.count = 1, .reusable = false}, SHIFT(755), + [1993] = {.count = 1, .reusable = true}, SHIFT(756), + [1995] = {.count = 1, .reusable = false}, SHIFT(756), + [1997] = {.count = 1, .reusable = true}, SHIFT(757), + [1999] = {.count = 1, .reusable = false}, SHIFT(757), + [2001] = {.count = 1, .reusable = true}, SHIFT(758), + [2003] = {.count = 1, .reusable = false}, SHIFT(758), + [2005] = {.count = 1, .reusable = true}, SHIFT(759), + [2007] = {.count = 1, .reusable = false}, SHIFT(759), + [2009] = {.count = 1, .reusable = true}, SHIFT(760), + [2011] = {.count = 1, .reusable = false}, SHIFT(760), + [2013] = {.count = 1, .reusable = true}, SHIFT(761), + [2015] = {.count = 1, .reusable = false}, SHIFT(761), + [2017] = {.count = 1, .reusable = true}, SHIFT(762), + [2019] = {.count = 1, .reusable = false}, SHIFT(762), + [2021] = {.count = 1, .reusable = true}, SHIFT(763), + [2023] = {.count = 1, .reusable = false}, SHIFT(763), + [2025] = {.count = 1, .reusable = true}, SHIFT(764), + [2027] = {.count = 1, .reusable = false}, SHIFT(764), + [2029] = {.count = 1, .reusable = true}, SHIFT(765), + [2031] = {.count = 1, .reusable = false}, SHIFT(765), + [2033] = {.count = 1, .reusable = true}, SHIFT(767), + [2035] = {.count = 1, .reusable = true}, SHIFT(769), + [2037] = {.count = 1, .reusable = false}, SHIFT(769), + [2039] = {.count = 1, .reusable = true}, SHIFT(770), + [2041] = {.count = 1, .reusable = false}, SHIFT(770), + [2043] = {.count = 1, .reusable = true}, SHIFT(771), + [2045] = {.count = 1, .reusable = false}, SHIFT(771), + [2047] = {.count = 1, .reusable = true}, SHIFT(772), + [2049] = {.count = 1, .reusable = false}, SHIFT(772), + [2051] = {.count = 1, .reusable = true}, SHIFT(773), + [2053] = {.count = 1, .reusable = false}, SHIFT(773), + [2055] = {.count = 1, .reusable = true}, SHIFT(774), + [2057] = {.count = 1, .reusable = false}, SHIFT(774), + [2059] = {.count = 1, .reusable = true}, SHIFT(775), + [2061] = {.count = 1, .reusable = false}, SHIFT(775), + [2063] = {.count = 1, .reusable = true}, SHIFT(776), + [2065] = {.count = 1, .reusable = false}, SHIFT(776), + [2067] = {.count = 1, .reusable = true}, SHIFT(777), + [2069] = {.count = 1, .reusable = false}, SHIFT(777), + [2071] = {.count = 1, .reusable = true}, SHIFT(778), + [2073] = {.count = 1, .reusable = false}, SHIFT(778), + [2075] = {.count = 1, .reusable = true}, SHIFT(779), + [2077] = {.count = 1, .reusable = false}, SHIFT(779), + [2079] = {.count = 1, .reusable = true}, SHIFT(780), + [2081] = {.count = 1, .reusable = false}, SHIFT(780), + [2083] = {.count = 1, .reusable = true}, SHIFT(782), + [2085] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [2087] = {.count = 1, .reusable = true}, SHIFT(783), + [2089] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), + [2091] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), + [2093] = {.count = 1, .reusable = false}, SHIFT(785), + [2095] = {.count = 1, .reusable = true}, SHIFT(786), + [2097] = {.count = 1, .reusable = false}, SHIFT(787), + [2099] = {.count = 1, .reusable = false}, SHIFT(788), + [2101] = {.count = 1, .reusable = true}, SHIFT(789), + [2103] = {.count = 1, .reusable = false}, SHIFT(789), + [2105] = {.count = 1, .reusable = true}, SHIFT(791), + [2107] = {.count = 1, .reusable = false}, SHIFT(791), + [2109] = {.count = 1, .reusable = false}, SHIFT(793), + [2111] = {.count = 1, .reusable = true}, SHIFT(794), + [2113] = {.count = 1, .reusable = false}, SHIFT(795), + [2115] = {.count = 1, .reusable = false}, SHIFT(796), + [2117] = {.count = 1, .reusable = false}, SHIFT(798), + [2119] = {.count = 1, .reusable = false}, SHIFT(801), + [2121] = {.count = 1, .reusable = true}, SHIFT(804), + [2123] = {.count = 1, .reusable = false}, SHIFT(806), + [2125] = {.count = 1, .reusable = true}, SHIFT(807), + [2127] = {.count = 1, .reusable = true}, SHIFT(810), + [2129] = {.count = 1, .reusable = false}, SHIFT(811), + [2131] = {.count = 1, .reusable = false}, SHIFT(812), + [2133] = {.count = 1, .reusable = false}, SHIFT(813), + [2135] = {.count = 1, .reusable = false}, SHIFT(814), + [2137] = {.count = 1, .reusable = true}, SHIFT(816), + [2139] = {.count = 1, .reusable = false}, SHIFT(818), + [2141] = {.count = 1, .reusable = true}, SHIFT(820), + [2143] = {.count = 1, .reusable = true}, SHIFT(821), + [2145] = {.count = 1, .reusable = true}, SHIFT(822), + [2147] = {.count = 1, .reusable = false}, SHIFT(822), + [2149] = {.count = 1, .reusable = true}, SHIFT(823), + [2151] = {.count = 1, .reusable = true}, SHIFT(824), + [2153] = {.count = 1, .reusable = true}, SHIFT(826), + [2155] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(350), + [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(351), + [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(352), + [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(353), + [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(354), + [2170] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(355), + [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(356), + [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(357), + [2179] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(358), + [2182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(359), + [2185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(360), + [2188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(361), + [2191] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(362), + [2194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(363), + [2197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(364), + [2200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(365), + [2203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(366), + [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(367), + [2209] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(370), + [2212] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(370), + [2215] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(368), + [2218] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), + [2220] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), + [2222] = {.count = 1, .reusable = true}, SHIFT(830), + [2224] = {.count = 1, .reusable = true}, SHIFT(832), + [2226] = {.count = 1, .reusable = true}, SHIFT(836), + [2228] = {.count = 1, .reusable = true}, SHIFT(837), + [2230] = {.count = 1, .reusable = false}, SHIFT(838), + [2232] = {.count = 1, .reusable = true}, SHIFT(839), + [2234] = {.count = 1, .reusable = true}, SHIFT(841), + [2236] = {.count = 1, .reusable = true}, SHIFT(843), + [2238] = {.count = 1, .reusable = true}, SHIFT(844), + [2240] = {.count = 1, .reusable = false}, SHIFT(844), + [2242] = {.count = 1, .reusable = true}, SHIFT(845), + [2244] = {.count = 1, .reusable = true}, SHIFT(846), + [2246] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), + [2248] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), + [2250] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), + [2252] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), + [2254] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), + [2256] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), + [2258] = {.count = 1, .reusable = true}, SHIFT(847), + [2260] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [2262] = {.count = 1, .reusable = true}, SHIFT(848), + [2264] = {.count = 1, .reusable = true}, SHIFT(849), + [2266] = {.count = 1, .reusable = false}, SHIFT(849), + [2268] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [2270] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [2272] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [2274] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [2276] = {.count = 1, .reusable = true}, SHIFT(851), + [2278] = {.count = 1, .reusable = true}, SHIFT(852), + [2280] = {.count = 1, .reusable = false}, SHIFT(852), + [2282] = {.count = 1, .reusable = true}, SHIFT(853), + [2284] = {.count = 1, .reusable = true}, SHIFT(854), + [2286] = {.count = 1, .reusable = false}, SHIFT(854), + [2288] = {.count = 1, .reusable = true}, SHIFT(855), + [2290] = {.count = 1, .reusable = true}, SHIFT(856), + [2292] = {.count = 1, .reusable = false}, SHIFT(856), + [2294] = {.count = 1, .reusable = false}, SHIFT(62), + [2296] = {.count = 1, .reusable = false}, SHIFT(63), + [2298] = {.count = 1, .reusable = true}, SHIFT(857), + [2300] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [2302] = {.count = 1, .reusable = true}, SHIFT(858), + [2304] = {.count = 1, .reusable = true}, SHIFT(860), + [2306] = {.count = 1, .reusable = false}, SHIFT(861), + [2308] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [2310] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [2312] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(671), + [2315] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [2317] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), + [2320] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2322] = {.count = 1, .reusable = true}, SHIFT(865), + [2324] = {.count = 1, .reusable = true}, SHIFT(866), + [2326] = {.count = 1, .reusable = true}, SHIFT(867), + [2328] = {.count = 1, .reusable = false}, SHIFT(867), + [2330] = {.count = 1, .reusable = true}, SHIFT(868), + [2332] = {.count = 1, .reusable = false}, SHIFT(868), + [2334] = {.count = 1, .reusable = true}, SHIFT(869), + [2336] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [2338] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [2340] = {.count = 1, .reusable = true}, SHIFT(871), + [2342] = {.count = 1, .reusable = false}, SHIFT(871), + [2344] = {.count = 1, .reusable = true}, SHIFT(872), + [2346] = {.count = 1, .reusable = true}, SHIFT(873), + [2348] = {.count = 1, .reusable = false}, SHIFT(873), + [2350] = {.count = 1, .reusable = false}, SHIFT(874), + [2352] = {.count = 1, .reusable = true}, SHIFT(875), + [2354] = {.count = 1, .reusable = false}, SHIFT(876), + [2356] = {.count = 1, .reusable = false}, SHIFT(877), + [2358] = {.count = 1, .reusable = true}, SHIFT(878), + [2360] = {.count = 1, .reusable = true}, SHIFT(877), + [2362] = {.count = 1, .reusable = false}, SHIFT(879), + [2364] = {.count = 1, .reusable = true}, SHIFT(880), + [2366] = {.count = 1, .reusable = true}, SHIFT(881), + [2368] = {.count = 1, .reusable = false}, SHIFT(882), + [2370] = {.count = 1, .reusable = false}, SHIFT(883), + [2372] = {.count = 1, .reusable = true}, SHIFT(884), + [2374] = {.count = 1, .reusable = false}, SHIFT(885), + [2376] = {.count = 1, .reusable = true}, SHIFT(885), + [2378] = {.count = 1, .reusable = false}, SHIFT(886), + [2380] = {.count = 1, .reusable = false}, SHIFT(887), + [2382] = {.count = 1, .reusable = true}, SHIFT(890), + [2384] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [2386] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [2388] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [2390] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [2392] = {.count = 1, .reusable = true}, SHIFT(892), + [2394] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(893), + [2397] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [2399] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [2401] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2403] = {.count = 1, .reusable = false}, SHIFT(895), + [2405] = {.count = 1, .reusable = true}, SHIFT(896), + [2407] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [2409] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [2411] = {.count = 1, .reusable = true}, SHIFT(899), + [2413] = {.count = 1, .reusable = true}, SHIFT(902), + [2415] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), + [2417] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [2419] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [2421] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [2423] = {.count = 1, .reusable = true}, SHIFT(905), + [2425] = {.count = 1, .reusable = true}, SHIFT(906), + [2427] = {.count = 1, .reusable = true}, SHIFT(907), + [2429] = {.count = 1, .reusable = false}, SHIFT(907), + [2431] = {.count = 1, .reusable = true}, SHIFT(909), + [2433] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [2435] = {.count = 1, .reusable = false}, SHIFT(912), + [2437] = {.count = 1, .reusable = true}, SHIFT(913), + [2439] = {.count = 1, .reusable = true}, SHIFT(914), + [2441] = {.count = 1, .reusable = false}, SHIFT(914), + [2443] = {.count = 1, .reusable = true}, SHIFT(915), + [2445] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [2447] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [2449] = {.count = 1, .reusable = false}, SHIFT(916), + [2451] = {.count = 1, .reusable = false}, SHIFT(917), + [2453] = {.count = 1, .reusable = false}, SHIFT(918), + [2455] = {.count = 1, .reusable = false}, SHIFT(919), + [2457] = {.count = 1, .reusable = true}, SHIFT(921), + [2459] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [2461] = {.count = 1, .reusable = false}, SHIFT(922), + [2463] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [2465] = {.count = 1, .reusable = false}, SHIFT(923), + [2467] = {.count = 1, .reusable = false}, SHIFT(924), + [2469] = {.count = 1, .reusable = false}, SHIFT(925), + [2471] = {.count = 1, .reusable = true}, SHIFT(927), + [2473] = {.count = 1, .reusable = true}, SHIFT(928), + [2475] = {.count = 1, .reusable = false}, SHIFT(928), + [2477] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), + [2479] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), + [2481] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(7), + [2484] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), + [2487] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2489] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), + [2492] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(12), + [2495] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(481), + [2498] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(19), + [2501] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(482), + [2504] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(483), + [2507] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(484), + [2510] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(21), + [2513] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(485), + [2516] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(23), + [2519] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(24), + [2522] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(25), + [2525] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(26), + [2528] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(27), + [2531] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(28), + [2534] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(29), + [2537] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(29), + [2540] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), + [2543] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(37), + [2546] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(31), + [2549] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(32), + [2552] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(37), + [2555] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(486), + [2558] = {.count = 1, .reusable = true}, SHIFT(930), + [2560] = {.count = 1, .reusable = true}, SHIFT(931), + [2562] = {.count = 1, .reusable = false}, SHIFT(931), + [2564] = {.count = 1, .reusable = true}, SHIFT(932), + [2566] = {.count = 1, .reusable = true}, SHIFT(933), + [2568] = {.count = 1, .reusable = false}, SHIFT(933), + [2570] = {.count = 1, .reusable = true}, SHIFT(934), + [2572] = {.count = 1, .reusable = true}, SHIFT(935), + [2574] = {.count = 1, .reusable = false}, SHIFT(935), + [2576] = {.count = 1, .reusable = true}, SHIFT(937), + [2578] = {.count = 1, .reusable = true}, SHIFT(939), + [2580] = {.count = 1, .reusable = false}, SHIFT(939), + [2582] = {.count = 1, .reusable = true}, SHIFT(940), + [2584] = {.count = 1, .reusable = false}, SHIFT(98), + [2586] = {.count = 1, .reusable = false}, SHIFT(99), + [2588] = {.count = 1, .reusable = true}, SHIFT(941), + [2590] = {.count = 1, .reusable = false}, SHIFT(941), + [2592] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [2594] = {.count = 1, .reusable = true}, SHIFT(942), + [2596] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2598] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [2600] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [2602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(532), + [2605] = {.count = 1, .reusable = true}, SHIFT(943), + [2607] = {.count = 1, .reusable = true}, SHIFT(944), + [2609] = {.count = 1, .reusable = true}, SHIFT(945), + [2611] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [2613] = {.count = 1, .reusable = true}, SHIFT(946), + [2615] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [2617] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [2619] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(569), + [2622] = {.count = 1, .reusable = true}, SHIFT(947), + [2624] = {.count = 1, .reusable = true}, SHIFT(948), + [2626] = {.count = 1, .reusable = true}, SHIFT(949), + [2628] = {.count = 1, .reusable = false}, SHIFT(950), + [2630] = {.count = 1, .reusable = true}, SHIFT(951), + [2632] = {.count = 1, .reusable = false}, SHIFT(952), + [2634] = {.count = 1, .reusable = false}, SHIFT(953), + [2636] = {.count = 1, .reusable = true}, SHIFT(954), + [2638] = {.count = 1, .reusable = false}, SHIFT(954), + [2640] = {.count = 1, .reusable = true}, SHIFT(956), + [2642] = {.count = 1, .reusable = false}, SHIFT(956), + [2644] = {.count = 1, .reusable = true}, SHIFT(958), + [2646] = {.count = 1, .reusable = true}, SHIFT(960), + [2648] = {.count = 1, .reusable = true}, SHIFT(964), + [2650] = {.count = 1, .reusable = true}, SHIFT(965), + [2652] = {.count = 1, .reusable = false}, SHIFT(966), + [2654] = {.count = 1, .reusable = true}, SHIFT(967), + [2656] = {.count = 1, .reusable = true}, SHIFT(969), + [2658] = {.count = 1, .reusable = true}, SHIFT(971), + [2660] = {.count = 1, .reusable = true}, SHIFT(972), + [2662] = {.count = 1, .reusable = false}, SHIFT(972), + [2664] = {.count = 1, .reusable = true}, SHIFT(973), + [2666] = {.count = 1, .reusable = true}, SHIFT(974), + [2668] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), + [2670] = {.count = 1, .reusable = true}, SHIFT(975), + [2672] = {.count = 1, .reusable = true}, SHIFT(976), + [2674] = {.count = 1, .reusable = true}, SHIFT(978), + [2676] = {.count = 1, .reusable = true}, SHIFT(979), + [2678] = {.count = 1, .reusable = false}, SHIFT(979), + [2680] = {.count = 1, .reusable = true}, SHIFT(981), + [2682] = {.count = 1, .reusable = true}, SHIFT(982), + [2684] = {.count = 1, .reusable = false}, SHIFT(982), + [2686] = {.count = 1, .reusable = true}, SHIFT(984), + [2688] = {.count = 1, .reusable = true}, SHIFT(985), + [2690] = {.count = 1, .reusable = false}, SHIFT(985), + [2692] = {.count = 1, .reusable = true}, SHIFT(986), + [2694] = {.count = 1, .reusable = true}, SHIFT(987), + [2696] = {.count = 1, .reusable = false}, SHIFT(987), + [2698] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [2700] = {.count = 1, .reusable = true}, SHIFT(988), + [2702] = {.count = 1, .reusable = false}, SHIFT(989), + [2704] = {.count = 1, .reusable = true}, SHIFT(990), + [2706] = {.count = 1, .reusable = true}, SHIFT(991), + [2708] = {.count = 1, .reusable = false}, SHIFT(991), + [2710] = {.count = 1, .reusable = true}, SHIFT(992), + [2712] = {.count = 1, .reusable = true}, SHIFT(993), + [2714] = {.count = 1, .reusable = true}, SHIFT(995), + [2716] = {.count = 1, .reusable = false}, SHIFT(995), + [2718] = {.count = 1, .reusable = true}, SHIFT(996), + [2720] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2722] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [2724] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(661), + [2727] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [2730] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(116), + [2734] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [2736] = {.count = 1, .reusable = true}, SHIFT(999), + [2738] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [2740] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [2742] = {.count = 1, .reusable = true}, SHIFT(1000), + [2744] = {.count = 1, .reusable = true}, SHIFT(1001), + [2746] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 7), + [2748] = {.count = 1, .reusable = true}, SHIFT(1003), + [2750] = {.count = 1, .reusable = true}, SHIFT(1004), + [2752] = {.count = 1, .reusable = false}, SHIFT(1004), + [2754] = {.count = 1, .reusable = true}, SHIFT(1006), + [2756] = {.count = 1, .reusable = false}, SHIFT(1006), + [2758] = {.count = 1, .reusable = true}, SHIFT(1007), + [2760] = {.count = 1, .reusable = false}, SHIFT(1007), + [2762] = {.count = 1, .reusable = true}, SHIFT(1008), + [2764] = {.count = 1, .reusable = false}, SHIFT(1008), + [2766] = {.count = 1, .reusable = true}, SHIFT(1009), + [2768] = {.count = 1, .reusable = false}, SHIFT(1009), + [2770] = {.count = 1, .reusable = true}, SHIFT(1010), + [2772] = {.count = 1, .reusable = false}, SHIFT(1010), + [2774] = {.count = 1, .reusable = true}, SHIFT(1011), + [2776] = {.count = 1, .reusable = false}, SHIFT(1011), + [2778] = {.count = 1, .reusable = true}, SHIFT(1012), + [2780] = {.count = 1, .reusable = false}, SHIFT(1012), + [2782] = {.count = 1, .reusable = true}, SHIFT(1013), + [2784] = {.count = 1, .reusable = false}, SHIFT(1013), + [2786] = {.count = 1, .reusable = true}, SHIFT(1014), + [2788] = {.count = 1, .reusable = false}, SHIFT(1014), + [2790] = {.count = 1, .reusable = true}, SHIFT(1015), + [2792] = {.count = 1, .reusable = false}, SHIFT(1015), + [2794] = {.count = 1, .reusable = true}, SHIFT(1016), + [2796] = {.count = 1, .reusable = false}, SHIFT(1016), + [2798] = {.count = 1, .reusable = true}, SHIFT(1017), + [2800] = {.count = 1, .reusable = true}, SHIFT(1020), + [2802] = {.count = 1, .reusable = false}, SHIFT(1020), + [2804] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(684), + [2807] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2809] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(689), + [2812] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2814] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2816] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2818] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), + [2820] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [2822] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [2824] = {.count = 1, .reusable = true}, SHIFT(1025), + [2826] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [2828] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [2830] = {.count = 1, .reusable = true}, SHIFT(1026), + [2832] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), + [2834] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), + [2836] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [2838] = {.count = 1, .reusable = true}, SHIFT(1027), + [2840] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [2842] = {.count = 1, .reusable = true}, SHIFT(1028), + [2844] = {.count = 1, .reusable = true}, SHIFT(1029), + [2846] = {.count = 1, .reusable = false}, SHIFT(1029), + [2848] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [2850] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [2852] = {.count = 1, .reusable = true}, SHIFT(1030), + [2854] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(712), + [2857] = {.count = 1, .reusable = true}, SHIFT(1031), + [2859] = {.count = 1, .reusable = true}, SHIFT(1032), + [2861] = {.count = 1, .reusable = false}, SHIFT(1032), + [2863] = {.count = 1, .reusable = true}, SHIFT(1033), + [2865] = {.count = 1, .reusable = true}, SHIFT(1034), + [2867] = {.count = 1, .reusable = false}, SHIFT(1034), + [2869] = {.count = 1, .reusable = true}, SHIFT(1037), + [2871] = {.count = 1, .reusable = true}, SHIFT(1038), + [2873] = {.count = 1, .reusable = false}, SHIFT(1039), + [2875] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [2877] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [2879] = {.count = 1, .reusable = true}, SHIFT(1043), + [2881] = {.count = 1, .reusable = true}, SHIFT(1044), + [2883] = {.count = 1, .reusable = true}, SHIFT(1046), + [2885] = {.count = 1, .reusable = true}, SHIFT(1047), + [2887] = {.count = 1, .reusable = false}, SHIFT(1047), + [2889] = {.count = 1, .reusable = true}, SHIFT(1048), + [2891] = {.count = 1, .reusable = true}, SHIFT(1049), + [2893] = {.count = 1, .reusable = true}, SHIFT(1050), + [2895] = {.count = 1, .reusable = true}, SHIFT(1051), + [2897] = {.count = 1, .reusable = false}, SHIFT(1051), + [2899] = {.count = 1, .reusable = true}, SHIFT(1052), + [2901] = {.count = 1, .reusable = true}, SHIFT(1053), + [2903] = {.count = 1, .reusable = true}, SHIFT(1055), + [2905] = {.count = 1, .reusable = false}, SHIFT(1055), + [2907] = {.count = 1, .reusable = true}, SHIFT(1056), + [2909] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [2911] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [2913] = {.count = 1, .reusable = true}, SHIFT(1058), + [2915] = {.count = 1, .reusable = true}, SHIFT(1060), + [2917] = {.count = 1, .reusable = false}, SHIFT(1060), + [2919] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [2921] = {.count = 1, .reusable = false}, SHIFT(311), + [2923] = {.count = 1, .reusable = false}, SHIFT(312), + [2925] = {.count = 1, .reusable = true}, SHIFT(1061), + [2927] = {.count = 1, .reusable = false}, SHIFT(1061), + [2929] = {.count = 1, .reusable = false}, SHIFT(320), + [2931] = {.count = 1, .reusable = false}, SHIFT(321), + [2933] = {.count = 1, .reusable = true}, SHIFT(1062), + [2935] = {.count = 1, .reusable = false}, SHIFT(1062), + [2937] = {.count = 1, .reusable = true}, SHIFT(1063), + [2939] = {.count = 1, .reusable = true}, SHIFT(1064), + [2941] = {.count = 1, .reusable = true}, SHIFT(1065), + [2943] = {.count = 1, .reusable = true}, SHIFT(1066), + [2945] = {.count = 1, .reusable = true}, SHIFT(1067), + [2947] = {.count = 1, .reusable = true}, SHIFT(1069), + [2949] = {.count = 1, .reusable = true}, SHIFT(1070), + [2951] = {.count = 1, .reusable = false}, SHIFT(1070), + [2953] = {.count = 1, .reusable = true}, SHIFT(1072), + [2955] = {.count = 1, .reusable = true}, SHIFT(1073), + [2957] = {.count = 1, .reusable = false}, SHIFT(1073), + [2959] = {.count = 1, .reusable = true}, SHIFT(1075), + [2961] = {.count = 1, .reusable = true}, SHIFT(1076), + [2963] = {.count = 1, .reusable = false}, SHIFT(1076), + [2965] = {.count = 1, .reusable = true}, SHIFT(1077), + [2967] = {.count = 1, .reusable = true}, SHIFT(1078), + [2969] = {.count = 1, .reusable = false}, SHIFT(1078), + [2971] = {.count = 1, .reusable = false}, SHIFT(1079), + [2973] = {.count = 1, .reusable = true}, SHIFT(1080), + [2975] = {.count = 1, .reusable = true}, SHIFT(1081), + [2977] = {.count = 1, .reusable = false}, SHIFT(1081), + [2979] = {.count = 1, .reusable = true}, SHIFT(1082), + [2981] = {.count = 1, .reusable = true}, SHIFT(1083), + [2983] = {.count = 1, .reusable = true}, SHIFT(1085), + [2985] = {.count = 1, .reusable = true}, SHIFT(1087), + [2987] = {.count = 1, .reusable = false}, SHIFT(1087), + [2989] = {.count = 1, .reusable = true}, SHIFT(1088), + [2991] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [2993] = {.count = 1, .reusable = true}, SHIFT(1089), + [2995] = {.count = 1, .reusable = true}, SHIFT(1090), + [2997] = {.count = 1, .reusable = false}, SHIFT(1090), + [2999] = {.count = 1, .reusable = true}, SHIFT(1091), + [3001] = {.count = 1, .reusable = true}, SHIFT(1092), + [3003] = {.count = 1, .reusable = false}, SHIFT(1092), + [3005] = {.count = 1, .reusable = true}, SHIFT(1093), + [3007] = {.count = 1, .reusable = true}, SHIFT(1095), + [3009] = {.count = 1, .reusable = false}, SHIFT(1095), + [3011] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [3013] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [3015] = {.count = 1, .reusable = true}, SHIFT(1097), + [3017] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [3019] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [3021] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3023] = {.count = 1, .reusable = true}, SHIFT(1098), + [3025] = {.count = 1, .reusable = true}, SHIFT(1099), + [3027] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1100), + [3030] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [3032] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [3034] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [3036] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [3038] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [3040] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [3042] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [3044] = {.count = 1, .reusable = true}, SHIFT(1102), + [3046] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [3048] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [3050] = {.count = 1, .reusable = true}, SHIFT(1103), + [3052] = {.count = 1, .reusable = true}, SHIFT(1105), + [3054] = {.count = 1, .reusable = false}, SHIFT(1105), + [3056] = {.count = 1, .reusable = true}, SHIFT(1106), + [3058] = {.count = 1, .reusable = true}, SHIFT(1108), + [3060] = {.count = 1, .reusable = true}, SHIFT(1109), + [3062] = {.count = 1, .reusable = false}, SHIFT(1109), + [3064] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [3066] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [3068] = {.count = 1, .reusable = false}, SHIFT(1110), + [3070] = {.count = 1, .reusable = false}, SHIFT(1111), + [3072] = {.count = 1, .reusable = false}, SHIFT(1112), + [3074] = {.count = 1, .reusable = false}, SHIFT(1113), + [3076] = {.count = 1, .reusable = false}, SHIFT(1115), + [3078] = {.count = 1, .reusable = true}, SHIFT(1116), + [3080] = {.count = 1, .reusable = true}, SHIFT(1117), + [3082] = {.count = 1, .reusable = false}, SHIFT(1117), + [3084] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7), + [3087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), + [3090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), + [3093] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), + [3096] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), + [3101] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(12), + [3104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), + [3107] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(199), + [3110] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(197), + [3113] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), + [3116] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), + [3119] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), + [3122] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(922), + [3125] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(19), + [3128] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(923), + [3133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), + [3136] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(924), + [3139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), + [3142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [3145] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), + [3148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [3151] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), + [3154] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [3157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [3160] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [3163] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [3166] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [3169] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [3172] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [3175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [3178] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(925), + [3181] = {.count = 1, .reusable = true}, SHIFT(1118), + [3183] = {.count = 1, .reusable = true}, SHIFT(1119), + [3185] = {.count = 1, .reusable = false}, SHIFT(1119), + [3187] = {.count = 1, .reusable = true}, SHIFT(1120), + [3189] = {.count = 1, .reusable = true}, SHIFT(1121), + [3191] = {.count = 1, .reusable = false}, SHIFT(1121), + [3193] = {.count = 1, .reusable = true}, SHIFT(1122), + [3195] = {.count = 1, .reusable = true}, SHIFT(1123), + [3197] = {.count = 1, .reusable = false}, SHIFT(1123), + [3199] = {.count = 1, .reusable = true}, SHIFT(1124), + [3201] = {.count = 1, .reusable = true}, SHIFT(1125), + [3203] = {.count = 1, .reusable = false}, SHIFT(1125), + [3205] = {.count = 1, .reusable = true}, SHIFT(1126), + [3207] = {.count = 1, .reusable = true}, SHIFT(1128), + [3209] = {.count = 1, .reusable = false}, SHIFT(1128), + [3211] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [3213] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [3215] = {.count = 1, .reusable = true}, SHIFT(1130), + [3217] = {.count = 1, .reusable = false}, SHIFT(1132), + [3219] = {.count = 1, .reusable = true}, SHIFT(1133), + [3221] = {.count = 1, .reusable = true}, SHIFT(1134), + [3223] = {.count = 1, .reusable = false}, SHIFT(1134), + [3225] = {.count = 1, .reusable = true}, SHIFT(1135), + [3227] = {.count = 1, .reusable = true}, SHIFT(1136), + [3229] = {.count = 1, .reusable = true}, SHIFT(1138), + [3231] = {.count = 1, .reusable = true}, SHIFT(1140), + [3233] = {.count = 1, .reusable = false}, SHIFT(1140), + [3235] = {.count = 1, .reusable = true}, SHIFT(1141), + [3237] = {.count = 1, .reusable = true}, SHIFT(1142), + [3239] = {.count = 1, .reusable = true}, SHIFT(1143), + [3241] = {.count = 1, .reusable = false}, SHIFT(1143), + [3243] = {.count = 1, .reusable = true}, SHIFT(1144), + [3245] = {.count = 1, .reusable = true}, SHIFT(1145), + [3247] = {.count = 1, .reusable = false}, SHIFT(1145), + [3249] = {.count = 1, .reusable = true}, SHIFT(1147), + [3251] = {.count = 1, .reusable = true}, SHIFT(1149), + [3253] = {.count = 1, .reusable = false}, SHIFT(1149), + [3255] = {.count = 1, .reusable = true}, SHIFT(1150), + [3257] = {.count = 1, .reusable = true}, SHIFT(1152), + [3259] = {.count = 1, .reusable = false}, SHIFT(1152), + [3261] = {.count = 1, .reusable = true}, SHIFT(1153), + [3263] = {.count = 1, .reusable = true}, SHIFT(1154), + [3265] = {.count = 1, .reusable = false}, SHIFT(683), + [3267] = {.count = 1, .reusable = false}, SHIFT(685), + [3269] = {.count = 1, .reusable = true}, SHIFT(1156), + [3271] = {.count = 1, .reusable = false}, SHIFT(1156), + [3273] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [3275] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [3277] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), + [3279] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [3281] = {.count = 1, .reusable = true}, SHIFT(1157), + [3283] = {.count = 1, .reusable = true}, SHIFT(1159), + [3285] = {.count = 1, .reusable = false}, SHIFT(1159), + [3287] = {.count = 1, .reusable = false}, SHIFT(1160), + [3289] = {.count = 1, .reusable = true}, SHIFT(1161), + [3291] = {.count = 1, .reusable = true}, SHIFT(1162), + [3293] = {.count = 1, .reusable = false}, SHIFT(1162), + [3295] = {.count = 1, .reusable = true}, SHIFT(1163), + [3297] = {.count = 1, .reusable = true}, SHIFT(1166), + [3299] = {.count = 1, .reusable = true}, SHIFT(1167), + [3301] = {.count = 1, .reusable = false}, SHIFT(1168), + [3303] = {.count = 1, .reusable = true}, SHIFT(1169), + [3305] = {.count = 1, .reusable = true}, SHIFT(1170), + [3307] = {.count = 1, .reusable = false}, SHIFT(1170), + [3309] = {.count = 1, .reusable = true}, SHIFT(1171), + [3311] = {.count = 1, .reusable = true}, SHIFT(1172), + [3313] = {.count = 1, .reusable = true}, SHIFT(1174), + [3315] = {.count = 1, .reusable = false}, SHIFT(1174), + [3317] = {.count = 1, .reusable = true}, SHIFT(1175), + [3319] = {.count = 1, .reusable = true}, SHIFT(1176), + [3321] = {.count = 1, .reusable = true}, SHIFT(1178), + [3323] = {.count = 1, .reusable = false}, SHIFT(1178), + [3325] = {.count = 1, .reusable = true}, SHIFT(1179), + [3327] = {.count = 1, .reusable = true}, SHIFT(1180), + [3329] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [3331] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [3333] = {.count = 1, .reusable = true}, SHIFT(1183), + [3335] = {.count = 1, .reusable = true}, SHIFT(1184), + [3337] = {.count = 1, .reusable = true}, SHIFT(1185), + [3339] = {.count = 1, .reusable = false}, SHIFT(1185), + [3341] = {.count = 1, .reusable = true}, SHIFT(1186), + [3343] = {.count = 1, .reusable = true}, SHIFT(1187), + [3345] = {.count = 1, .reusable = false}, SHIFT(1187), + [3347] = {.count = 1, .reusable = true}, SHIFT(1189), + [3349] = {.count = 1, .reusable = true}, SHIFT(1191), + [3351] = {.count = 1, .reusable = false}, SHIFT(1191), + [3353] = {.count = 1, .reusable = true}, SHIFT(1192), + [3355] = {.count = 1, .reusable = true}, SHIFT(1194), + [3357] = {.count = 1, .reusable = false}, SHIFT(1194), + [3359] = {.count = 1, .reusable = true}, SHIFT(1195), + [3361] = {.count = 1, .reusable = true}, SHIFT(1197), + [3363] = {.count = 1, .reusable = true}, SHIFT(1199), + [3365] = {.count = 1, .reusable = true}, SHIFT(1201), + [3367] = {.count = 1, .reusable = false}, SHIFT(1201), + [3369] = {.count = 1, .reusable = true}, SHIFT(1202), + [3371] = {.count = 1, .reusable = true}, SHIFT(1203), + [3373] = {.count = 1, .reusable = true}, SHIFT(1205), + [3375] = {.count = 1, .reusable = true}, SHIFT(1206), + [3377] = {.count = 1, .reusable = false}, SHIFT(1206), + [3379] = {.count = 1, .reusable = true}, SHIFT(1207), + [3381] = {.count = 1, .reusable = true}, SHIFT(1208), + [3383] = {.count = 1, .reusable = false}, SHIFT(1208), + [3385] = {.count = 1, .reusable = true}, SHIFT(1210), + [3387] = {.count = 1, .reusable = true}, SHIFT(1211), + [3389] = {.count = 1, .reusable = false}, SHIFT(1211), + [3391] = {.count = 1, .reusable = true}, SHIFT(1212), + [3393] = {.count = 1, .reusable = true}, SHIFT(1213), + [3395] = {.count = 1, .reusable = false}, SHIFT(1213), + [3397] = {.count = 1, .reusable = true}, SHIFT(1214), + [3399] = {.count = 1, .reusable = true}, SHIFT(1215), + [3401] = {.count = 1, .reusable = false}, SHIFT(1215), + [3403] = {.count = 1, .reusable = true}, SHIFT(1216), + [3405] = {.count = 1, .reusable = true}, SHIFT(1218), + [3407] = {.count = 1, .reusable = false}, SHIFT(1218), + [3409] = {.count = 1, .reusable = true}, SHIFT(1219), + [3411] = {.count = 1, .reusable = true}, SHIFT(1221), + [3413] = {.count = 1, .reusable = false}, SHIFT(1221), + [3415] = {.count = 1, .reusable = true}, SHIFT(1222), + [3417] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [3419] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [3421] = {.count = 1, .reusable = true}, SHIFT(1224), + [3423] = {.count = 1, .reusable = true}, SHIFT(1226), + [3425] = {.count = 1, .reusable = false}, SHIFT(1226), + [3427] = {.count = 1, .reusable = true}, SHIFT(1227), + [3429] = {.count = 1, .reusable = true}, SHIFT(1229), + [3431] = {.count = 1, .reusable = true}, SHIFT(1231), + [3433] = {.count = 1, .reusable = true}, SHIFT(1233), + [3435] = {.count = 1, .reusable = false}, SHIFT(1233), + [3437] = {.count = 1, .reusable = true}, SHIFT(1235), + [3439] = {.count = 1, .reusable = true}, SHIFT(1236), + [3441] = {.count = 1, .reusable = true}, SHIFT(1238), + [3443] = {.count = 1, .reusable = true}, SHIFT(1239), + [3445] = {.count = 1, .reusable = true}, SHIFT(1241), + [3447] = {.count = 1, .reusable = false}, SHIFT(1241), + [3449] = {.count = 1, .reusable = true}, SHIFT(1242), + [3451] = {.count = 1, .reusable = false}, SHIFT(1243), + [3453] = {.count = 1, .reusable = true}, SHIFT(1244), + [3455] = {.count = 1, .reusable = true}, SHIFT(1245), + [3457] = {.count = 1, .reusable = false}, SHIFT(1245), + [3459] = {.count = 1, .reusable = true}, SHIFT(1246), + [3461] = {.count = 1, .reusable = true}, SHIFT(1247), + [3463] = {.count = 1, .reusable = true}, SHIFT(1249), + [3465] = {.count = 1, .reusable = false}, SHIFT(1249), + [3467] = {.count = 1, .reusable = true}, SHIFT(1250), + [3469] = {.count = 1, .reusable = true}, SHIFT(1251), + [3471] = {.count = 1, .reusable = true}, SHIFT(1253), + [3473] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [3475] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [3477] = {.count = 1, .reusable = true}, SHIFT(1255), + [3479] = {.count = 1, .reusable = true}, SHIFT(1257), + [3481] = {.count = 1, .reusable = false}, SHIFT(1257), + [3483] = {.count = 1, .reusable = true}, SHIFT(1259), + [3485] = {.count = 1, .reusable = true}, SHIFT(1260), + [3487] = {.count = 1, .reusable = true}, SHIFT(1263), + [3489] = {.count = 1, .reusable = true}, SHIFT(1264), + [3491] = {.count = 1, .reusable = true}, SHIFT(1266), + [3493] = {.count = 1, .reusable = false}, SHIFT(1266), + [3495] = {.count = 1, .reusable = true}, SHIFT(1267), + [3497] = {.count = 1, .reusable = true}, SHIFT(1268), + [3499] = {.count = 1, .reusable = false}, SHIFT(1268), + [3501] = {.count = 1, .reusable = true}, SHIFT(1269), + [3503] = {.count = 1, .reusable = true}, SHIFT(1270), + [3505] = {.count = 1, .reusable = false}, SHIFT(1270), + [3507] = {.count = 1, .reusable = true}, SHIFT(1271), + [3509] = {.count = 1, .reusable = true}, SHIFT(1273), + [3511] = {.count = 1, .reusable = false}, SHIFT(1273), + [3513] = {.count = 1, .reusable = true}, SHIFT(1274), + [3515] = {.count = 1, .reusable = true}, SHIFT(1275), + [3517] = {.count = 1, .reusable = true}, SHIFT(1276), + [3519] = {.count = 1, .reusable = true}, SHIFT(1279), + [3521] = {.count = 1, .reusable = true}, SHIFT(1280), + [3523] = {.count = 1, .reusable = true}, SHIFT(1282), + [3525] = {.count = 1, .reusable = true}, SHIFT(1284), + [3527] = {.count = 1, .reusable = false}, SHIFT(1284), + [3529] = {.count = 1, .reusable = true}, SHIFT(1285), + [3531] = {.count = 1, .reusable = true}, SHIFT(1286), + [3533] = {.count = 1, .reusable = true}, SHIFT(1288), + [3535] = {.count = 1, .reusable = true}, SHIFT(1289), + [3537] = {.count = 1, .reusable = true}, SHIFT(1290), + [3539] = {.count = 1, .reusable = true}, SHIFT(1292), + [3541] = {.count = 1, .reusable = false}, SHIFT(1292), + [3543] = {.count = 1, .reusable = true}, SHIFT(1293), + [3545] = {.count = 1, .reusable = true}, SHIFT(1294), + [3547] = {.count = 1, .reusable = true}, SHIFT(1296), }; #ifdef _WIN32 From f45ae86afd122127c85bba374b17991f9a9f23bf Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 4 Dec 2018 11:50:33 -0800 Subject: [PATCH 2/2] Add appveyor config for windows CI --- appveyor.yml | 22 ++++++++++++++++++++++ package.json | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..b21947bc --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,22 @@ +image: Visual Studio 2015 + +environment: + nodejs_version: "8" + +platform: + - x64 + +install: + - ps: Install-Product node $env:nodejs_version + - node --version + - npm --version + - npm install + +test_script: + - npm run test-windows + +build: off + +branches: + only: + - master diff --git a/package.json b/package.json index a85703a2..11e26e32 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,6 @@ }, "scripts": { "build": "tree-sitter generate && node-gyp build", - "test": "tree-sitter test && tree-sitter parse examples/* --quiet --time" + "test": "tree-sitter test && tree-sitter parse examples --quiet --time" } }